10 lines
191 B
Ruby
10 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
|