2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:36:40 +08:00

Initial release of Discourse

This commit is contained in:
Robin Ward 2013-02-05 14:16:51 -05:00
commit 21b5628528
2932 changed files with 143949 additions and 0 deletions

View file

@ -0,0 +1,28 @@
class CreateVestalVersions < ActiveRecord::Migration
def self.up
create_table :versions do |t|
t.belongs_to :versioned, :polymorphic => true
t.belongs_to :user, :polymorphic => true
t.string :user_name
t.text :modifications
t.integer :number
t.integer :reverted_from
t.string :tag
t.timestamps
end
change_table :versions do |t|
t.index [:versioned_id, :versioned_type]
t.index [:user_id, :user_type]
t.index :user_name
t.index :number
t.index :tag
t.index :created_at
end
end
def self.down
drop_table :versions
end
end