12 lines
236 B
Ruby
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
|