a11yist/db/migrate/20240715210937_create_elements.rb

13 lines
265 B
Ruby
Raw 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.text :description
t.timestamps
end
end
end