Class: CreateAccounts

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

Class Method Summary collapse

Class Method Details

.downObject



15
16
17
# File 'lib/generators/devise_yauth_token/templates/create_accounts.rb', line 15

def self.down
  drop_table :accounts
end

.upObject



2
3
4
5
6
7
8
9
10
11
12
13
# File 'lib/generators/devise_yauth_token/templates/create_accounts.rb', line 2

def self.up
  create_table :accounts do |t|
    t.string :name
    t.string :code
    t.text :description
    t.boolean :admin, :dafault => false
    t.integer :yauth_account_id
    t.string :host
    t.string :yauth_host
    t.timestamps
  end
end