##// END OF EJS Templates
More unit tests to cover hook_registered?
More unit tests to cover hook_registered?

File last commit:

r451:18255881ca61
r1707:e87140a719c2
Show More
039_create_watchers.rb
13 lines | 337 B | text/x-ruby | RubyLexer
/ db / migrate / 039_create_watchers.rb
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