Class: CreatePlayerMigration
- Inherits:
-
Object
- Object
- CreatePlayerMigration
- Defined in:
- lib/rubypitaya/app-template/app/migrations/1606736477_create_player_migration.rb
Instance Method Summary collapse
Instance Method Details
#change ⇒ Object
5 6 7 8 9 10 11 12 |
# File 'lib/rubypitaya/app-template/app/migrations/1606736477_create_player_migration.rb', line 5 def change create_table :players do |t| t.belongs_to :user, foreing_key: true, index: { unique: true } t.string :name, null: false t.integer :gold, null: false t. null: false end end |