a11yist/db/migrate/20240715123847_create_checks.rb

13 lines
234 B
Ruby
Raw Normal View History

class CreateChecks < ActiveRecord::Migration[7.1]
def change
create_table :checks do |t|
t.string :position
t.string :name
t.text :success_criterion
t.integer :level
t.timestamps
end
end
end