Class: AddImportedCreds

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
db/migrate/20101104135100_add_imported_creds.rb

Class Method Summary collapse

Class Method Details

.downObject



12
13
14
# File 'db/migrate/20101104135100_add_imported_creds.rb', line 12

def self.down
  drop_table :imported_creds
end

.upObject



3
4
5
6
7
8
9
10
# File 'db/migrate/20101104135100_add_imported_creds.rb', line 3

def self.up
  create_table :imported_creds do |t|
    t.integer   :workspace_id, :null => false, :default => 1
    t.string    :user, :limit  => 512
    t.string    :pass, :limit  => 512
    t.string    :ptype, :limit  => 16, :default => "password"
  end
end