Initial commit

This commit is contained in:
Senad Uka
2021-09-20 08:22:39 +02:00
commit a0c72b0caf
133 changed files with 9056 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
class CreateProducts < ActiveRecord::Migration[6.1]
def change
create_table :products do |t|
t.string "name"
t.bigint "industry_id"
t.bigint "supplier_id"
t.string "description"
t.timestamps
end
end
end