11 lines
224 B
Ruby
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
|