11 lines
202 B
Ruby
11 lines
202 B
Ruby
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
|