Files
old-konsultanti-next-gen/db/migrate/20210917144712_create_suppliers.rb

9 lines
160 B
Ruby
Raw Normal View History

2021-09-20 08:22:39 +02:00
class CreateSuppliers < ActiveRecord::Migration[6.1]
def change
create_table :suppliers do |t|
t.string "name"
t.timestamps
end
end
end