blog_perso_app/db/migrate/20110421125532_create_file_folders.rb
Nicolas Bally 56a0aa9848 initial
2012-06-17 21:11:12 +02:00

17 lines
340 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
FileFolder.create(:name => "Dossier principal", :super_admin => true)
end
def self.down
drop_table :file_folders
end
end