13 lines
281 B
Ruby
13 lines
281 B
Ruby
|
|
class CreateSuccessCriteria < ActiveRecord::Migration[7.1]
|
||
|
|
def change
|
||
|
|
create_table :success_criteria do |t|
|
||
|
|
t.references :element, null: false, foreign_key: true
|
||
|
|
t.string :title
|
||
|
|
t.integer :level
|
||
|
|
t.integer :result
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|