a11yist/db/migrate/20240715203351_create_reports.rb

9 lines
156 B
Ruby

class CreateReports < ActiveRecord::Migration[7.1]
def change
create_table :reports do |t|
t.string :name
t.timestamps
end
end
end