sillyforum/db/migrate/20260317095039_create_forum_topics.rb
2026-03-17 12:49:38 +00:00

9 lines
191 B
Ruby

class CreateForumTopics < ActiveRecord::Migration[8.1]
def change
create_table :forum_topics do |t|
t.timestamps
t.string :title
t.text :description
end
end
end