Added create_watchers migration

git-svn-id: http://redmine.rubyforge.org/svn/trunk@454 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2007-04-21 12:09:07 +00:00
parent 2fb84af3e9
commit 18255881ca
1 changed files with 13 additions and 0 deletions

View File

@ -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