rails-caf/db/migrate/20220210171858_create_cafs.rb
2022-04-07 12:45:09 +01:00

12 lines
236 B
Ruby

class CreateCafs < ActiveRecord::Migration[7.0]
def change
create_table :cafs do |t|
t.references :company, null: false, foreign_key: true
t.string :name
t.text :description
t.timestamps
end
end
end