Class: CreateAccounts

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/twitter/cli/migrations/20080722194500_create_accounts.rb

Class Method Summary collapse

Class Method Details

.downObject



10
11
12
# File 'lib/twitter/cli/migrations/20080722194500_create_accounts.rb', line 10

def self.down
  drop_table :accounts
end

.upObject



2
3
4
5
6
7
8
# File 'lib/twitter/cli/migrations/20080722194500_create_accounts.rb', line 2

def self.up
  create_table :accounts do |t|
    t.string :username, :password
    t.boolean :current
    t.timestamps
  end
end