rails-caf/db/migrate/20230127091956_create_objectives.rb

12 lines
244 B
Ruby

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