class CreateAlbums

Public Class Methods

down() click to toggle source
# File lib/generators/dust_album/templates/albums_migration.rb, line 15
def self.down
  drop_table :albums
end
up() click to toggle source
# 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.timestamps
  end
              
              CmsMenuItem.create({:title =>"Albums", :controller_name => "albums", :url => "/albums"})
              
end