Files
old-konsultanti-next-gen/db/migrate/20210917144712_create_suppliers.rb
2021-09-20 08:22:39 +02:00

9 lines
160 B
Ruby

class CreateSuppliers < ActiveRecord::Migration[6.1]
def change
create_table :suppliers do |t|
t.string "name"
t.timestamps
end
end
end