8 lines
147 B
Ruby
8 lines
147 B
Ruby
|
|
class CreateForumProfiles < ActiveRecord::Migration[8.1]
|
||
|
|
def change
|
||
|
|
create_table :forum_profiles do |t|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|