mirror of
https://github.com/discourse/discourse.git
synced 2025-02-03 14:15:14 +08:00
12 lines
289 B
Ruby
12 lines
289 B
Ruby
class CreateForumThreads < ActiveRecord::Migration
|
|
def change
|
|
create_table :forum_threads do |t|
|
|
t.integer :forum_id, null: false
|
|
t.string :title, null: false
|
|
t.integer :last_post_id
|
|
t.datetime :last_posted_at
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|