20211213094550_create_user_social_links.rb 321 B

123456789101112
  1. class CreateUserSocialLinks < ActiveRecord::Migration[6.1]
  2. def change
  3. create_table :user_social_links do |t|
  4. t.references :user, null: false, foreign_key: true
  5. t.references :social_link, null: false, foreign_key: true
  6. t.integer :priority
  7. t.string :link
  8. t.timestamps
  9. end
  10. end
  11. end