accescible_app/db/migrate/20110421125532_create_file_folders.rb
Nicolas Bally d4484275e8 initial
2011-06-25 12:08:06 +02:00

16 lines
269 B
Ruby

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