This commit is contained in:
Sunandar
2017-02-09 18:02:01 +06:30
parent 07477f1a06
commit a3bd5dc1b7
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class AddLocationCodeInClients < ActiveRecord::Migration[5.0]
def change
add_column :clients, :location_code, :string
end
end

View File

@@ -0,0 +1,5 @@
class AddProductTypeInBatches < ActiveRecord::Migration[5.0]
def change
add_reference :batches, :product_category, index: true
end
end