Forgot about Objectives.

This commit is contained in:
2023-01-27 09:25:10 +00:00
parent 6006b8bc97
commit 089f535a51
4 changed files with 22 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
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