rails-caf/db/migrate/20220206142432_create_companies.rb
2022-02-06 15:04:32 +00:00

10 lines
160 B
Ruby

class CreateCompanies < ActiveRecord::Migration[7.0]
def change
create_table :companies do |t|
t.string :name
t.timestamps
end
end
end