boissier_app/db/migrate/20110414184246_create_albums.rb
Nicolas Bally 6abf7679fd initial
2011-05-14 13:36:30 +02:00

16 lines
252 B
Ruby

# -*- encoding : utf-8 -*-
class CreateAlbums < ActiveRecord::Migration
def self.up
create_table :albums do |t|
t.string :name
t.boolean :super_admin
t.timestamps
end
end
def self.down
drop_table :albums
end
end