sillyforum/db/migrate/20260317091612_create_forum_threads.rb

11 lines
193 B
Ruby
Raw Normal View History

2026-03-17 12:49:38 +00:00
class CreateForumThreads < ActiveRecord::Migration[8.1]
def change
create_table :forum_threads do |t|
t.timestamps
t.string :title
t.text :body
end
end
end