Class: InstallPolemic
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- InstallPolemic
- Defined in:
- lib/generators/polemic/templates/install.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
14 15 16 |
# File 'lib/generators/polemic/templates/install.rb', line 14 def self.down drop_table :comments end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 |
# File 'lib/generators/polemic/templates/install.rb', line 2 def self.up create_table :comments do |t| t.references :commentable, :polymorphic => true t.text :body t.references :user t.string :ancestry t.boolean :deleted, :default => false t. end end |