Class: CreateShips

Inherits:
Object
  • Object
show all
Defined in:
lib/super/test_support/copy_app_templates/20190803143320_create_ships.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
10
# File 'lib/super/test_support/copy_app_templates/20190803143320_create_ships.rb', line 2

def change
  create_table :ships do |t|
    t.string :name
    t.string :registry
    t.string :class_name

    t.timestamps
  end
end