create InJuty

This commit is contained in:
Zin Lin Phyo
2017-08-23 15:02:27 +06:30
parent d6b8e8bdee
commit 874a9b60be
25 changed files with 692 additions and 636 deletions

View File

@@ -0,0 +1,11 @@
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