Class: AddApiKeysTable

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
db/migrate/20110527000001_add_api_keys_table.rb

Class Method Summary collapse

Class Method Details

.downObject



8
9
10
# File 'db/migrate/20110527000001_add_api_keys_table.rb', line 8

def self.down
	drop_table :api_keys
end

.upObject



2
3
4
5
6
7
# File 'db/migrate/20110527000001_add_api_keys_table.rb', line 2

def self.up
	create_table :api_keys do |t|
		t.text :token
		t.timestamps
	end
end