Class: AddDefaultTemplate
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- AddDefaultTemplate
- Defined in:
- pages/db/migrate/12_add_default_template.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
10 11 12 |
# File 'pages/db/migrate/12_add_default_template.rb', line 10 def self.down ConstructorPages::Template.delete_all end |
.up ⇒ Object
2 3 4 5 6 7 8 |
# File 'pages/db/migrate/12_add_default_template.rb', line 2 def self.up ConstructorPages::Template.create!( :name => "Page", :code_name => "page", :child_id => 1 ) end |