Added create_watchers migration
git-svn-id: http://redmine.rubyforge.org/svn/trunk@454 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
2fb84af3e9
commit
18255881ca
|
@ -0,0 +1,13 @@
|
|||
class CreateWatchers < ActiveRecord::Migration
|
||||
def self.up
|
||||
create_table :watchers do |t|
|
||||
t.column :watchable_type, :string, :default => "", :null => false
|
||||
t.column :watchable_id, :integer, :default => 0, :null => false
|
||||
t.column :user_id, :integer
|
||||
end
|
||||
end
|
||||
|
||||
def self.down
|
||||
drop_table :watchers
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue