inventory setup

This commit is contained in:
Nweni
2017-08-24 18:04:42 +06:30
parent 688ce932cc
commit 81f430b5c6
97 changed files with 1699 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
class CreateStockChecks < ActiveRecord::Migration[5.1]
def change
create_table :stock_checks do |t|
t.integer :check_by
t.datetime :check_start
t.datetime :check_end
t.string :reason
t.timestamps
end
end
end