thirteen-tien-len/db/migrate/20231107161251_create_social_links.rb

11 lines
224 B
Ruby

class CreateSocialLinks < ActiveRecord::Migration[6.1]
def change
create_table :social_links do |t|
t.belongs_to :profile, null: false, foreign_key: true
t.string :url
t.timestamps
end
end
end