a11yist/db/migrate/20240715203351_create_reports.rb

10 lines
156 B
Ruby
Raw Normal View History

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