Class: CreateRoles

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/double_auth_engine/generators/double_auth_engine/templates/role_migration.rb

Class Method Summary collapse

Class Method Details

.downObject



9
10
11
# File 'lib/double_auth_engine/generators/double_auth_engine/templates/role_migration.rb', line 9

def self.down
  drop_table :roles
end

.upObject



2
3
4
5
6
7
# File 'lib/double_auth_engine/generators/double_auth_engine/templates/role_migration.rb', line 2

def self.up
  create_table :roles do |t|
    t.string :name
    t.timestamps
  end
end