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

23 lines
387 B
Ruby

# -*- encoding : utf-8 -*-
class CreateAdmin < ActiveRecord::Migration
def self.up
create_table :admins do |t|
t.database_authenticatable
t.confirmable
t.recoverable
t.rememberable
t.trackable
t.string :username
t.string :surname
t.string :firstname
t.integer :roles_mask
t.timestamps
end
end
def self.down
drop_table :admins
end
end