a11yist/db/migrate/20240715123847_create_checks.rb

12 lines
202 B
Ruby
Raw Permalink Normal View History

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