Class: CreateFacts
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateFacts
- Defined in:
- lib/generators/honesty/templates/create_facts.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
15 16 17 |
# File 'lib/generators/honesty/templates/create_facts.rb', line 15 def self.down drop_table :facts end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 |
# File 'lib/generators/honesty/templates/create_facts.rb', line 2 def self.up create_table :facts do |t| t.string :context, :limit => 40 t.string :agent t.string :action t.references :honest, :polymorphic => true t. end add_index :facts, :honest_type add_index :facts, :honest_id end |