mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Initial release of Discourse
This commit is contained in:
11
db/migrate/20120311163914_create_forum_threads.rb
Normal file
11
db/migrate/20120311163914_create_forum_threads.rb
Normal file
@@ -0,0 +1,11 @@
|
||||
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
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user