Class: CreateAlbums
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateAlbums
- Defined in:
- lib/generators/dust_album/templates/albums_migration.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
15 16 17 |
# File 'lib/generators/dust_album/templates/albums_migration.rb', line 15 def self.down drop_table :albums end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 |
# File 'lib/generators/dust_album/templates/albums_migration.rb', line 2 def self.up create_table :albums do |t| t.string :title t.string :filename t.text :desc t.boolean :active t. end CmsMenuItem.create({:title =>"Albums", :controller_name => "albums", :url => "/albums"}) end |