Files
sx-fc/db/migrate/20170823081747_create_in_juties.rb
Zin Lin Phyo 874a9b60be create InJuty
2017-08-23 15:02:27 +06:30

12 lines
249 B
Ruby

class CreateInJuties < ActiveRecord::Migration[5.1]
def change
create_table :in_juties do |t|
t.integer :dinning_id
t.json :commissioner_ids
t.datetime :in_time
t.datetime :out_time
t.timestamps
end
end
end