sillyforum/db/migrate/20260317095039_create_forum_topics.rb

10 lines
191 B
Ruby
Raw Normal View History

2026-03-17 12:49:38 +00:00
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