Commit 18255881 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Added create_watchers migration

git-svn-id: http://redmine.rubyforge.org/svn/trunk@454 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 2fb84af3
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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment