Class: CreateTaxons
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateTaxons
- Defined in:
- lib/generators/taxis/templates/create_taxons.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
15 16 17 |
# File 'lib/generators/taxis/templates/create_taxons.rb', line 15 def self.down drop_table :taxons end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 |
# File 'lib/generators/taxis/templates/create_taxons.rb', line 2 def self.up create_table :taxons do |t| t.string :name t.text :path t.string :url t.integer :taxonomy_id # for acts as set t.integer :parent_id, :lft, :rgt, :root_id t. end end |