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

18 lines
301 B
Ruby

# -*- encoding : utf-8 -*-
class CreateFolders < ActiveRecord::Migration
def self.up
create_table :folders do |t|
t.string :title
t.string :slug
t.boolean :enabled
t.text :description
t.references :image_file
t.timestamps
end
end
def self.down
drop_table :folders
end
end