inventory definition.coffee

This commit is contained in:
yamin
2017-10-23 11:40:37 +06:30
69 changed files with 869 additions and 946 deletions

View File

@@ -0,0 +1,10 @@
class CreateCashierTerminalByZones < ActiveRecord::Migration[5.1]
def change
create_table :cashier_terminal_by_zones do |t|
t.references :cashier_terminal, :null => false
t.references :zone, :null => false
t.timestamps
end
end
end