Files
fizzy/db/migrate/20241022180042_create_event_summaries.rb
T
2024-10-25 15:03:31 -06:00

8 lines
149 B
Ruby

class CreateEventSummaries < ActiveRecord::Migration[8.0]
def change
create_table :event_summaries do |t|
t.timestamps
end
end
end