Files
fizzy/db/migrate/20241022174800_create_bubble_thread.rb
T
Jose Farias c57f18c20c Materialize abstract thread
The domain language is clearer if we just persist a thread. Also rename some models so their purpose is clear.
2024-10-24 17:36:14 -06:00

10 lines
206 B
Ruby

class CreateBubbleThread < ActiveRecord::Migration[8.0]
def change
create_table :bubble_threads do |t|
t.references :bubble, null: false, foreign_key: true
t.timestamps
end
end
end