Class: CreateFavoriteThings

Inherits:
Object
  • Object
show all
Defined in:
lib/super/test_support/copy_app_templates/migrations/20191126050453_create_favorite_things.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
# File 'lib/super/test_support/copy_app_templates/migrations/20191126050453_create_favorite_things.rb', line 2

def change
  create_table :favorite_things do |t|
    t.references :member, null: false, foreign_key: true
    t.text :name

    t.timestamps
  end
end