11 lines
193 B
Ruby
11 lines
193 B
Ruby
|
|
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
|