1
2
3
4
5
6
7
8
9
10
11
12
|
class CreateToleranceTimePluginPublications < ActiveRecord::Migration
def self.up
create_table :tolerance_time_plugin_publications do |t|
t.references :target, :polymorphic => true
t.timestamps
end
end
def self.down
drop_table :tolerance_time_plugin_publications
end
end
|