ref: master
plugins/tolerance_time/db/migrate/20120719090320_create_tolerance_time_plugin_tolerances.rb
1 2 3 4 5 6 7 8 9 10 11 12 13 |
class CreateToleranceTimePluginTolerances < ActiveRecord::Migration def self.up create_table :tolerance_time_plugin_tolerances do |t| t.references :profile t.integer :content_tolerance t.integer :comment_tolerance end end def self.down drop_table :tolerance_time_plugin_tolerances end end |