a11yist/db/migrate/20240715210937_create_elements.rb

11 lines
239 B
Ruby

class CreateElements < ActiveRecord::Migration[7.1]
def change
create_table :elements do |t|
t.references :report, null: false, foreign_key: true
t.string :path
t.string :title
t.timestamps
end
end
end