Files
rails-caf/db/migrate/20230127091956_create_objectives.rb
2023-01-27 09:25:10 +00:00

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