sillyforum/db/migrate/20260317092248_create_forum_profiles.rb

8 lines
147 B
Ruby
Raw Normal View History

2026-03-17 12:49:38 +00:00
class CreateForumProfiles < ActiveRecord::Migration[8.1]
def change
create_table :forum_profiles do |t|
t.timestamps
end
end
end