qi6_app/db/migrate/20180627224803_create_p_ship_tours.rb
2019-05-17 12:30:45 +02:00

12 lines
225 B
Ruby

class CreatePShipTours < ActiveRecord::Migration[6.0]
def change
create_table :p_ship_tours do |t|
t.datetime :start_at
t.string :state
t.string :code
t.timestamps null: false
end
end
end