Class: CreateScriptureReferences
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateScriptureReferences
- Defined in:
- lib/generators/scripturable/templates/create_scripture_references.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
15 16 17 |
# File 'lib/generators/scripturable/templates/create_scripture_references.rb', line 15 def self.down drop_table :scripture_references end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 |
# File 'lib/generators/scripturable/templates/create_scripture_references.rb', line 2 def self.up create_table :scripture_references do |t| t.references :scripturable, :polymorphic => true t.integer :scripturable_id t.integer :start_at t.integer :end_at t. end add_index :scripture_references, :scripturable_type add_index :scripture_references, :scripturable_id end |