add cashier zones

This commit is contained in:
Yan
2017-10-23 09:57:26 +06:30
parent ce5e3b69ed
commit bcd86714e2
3 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
class CreateCashierTerminalByZones < ActiveRecord::Migration[5.1]
def change
create_table :cashier_terminal_by_zones do |t|
t.integer :cashier_terminal_id
t.integer :zone_id
t.timestamps
end
end
end