a11yist/db/migrate/20240715210937_create_elements.rb

12 lines
239 B
Ruby
Raw Permalink Normal View History

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