Class: CreateStores

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/db/migrate/20101104032051_create_stores.rb

Class Method Summary collapse

Class Method Details

.down ⇒ Object



10
11
12
# File 'lib/db/migrate/20101104032051_create_stores.rb', line 10

def self.down
  drop_table :stores
end

.up ⇒ Object



2
3
4
5
6
7
8
# File 'lib/db/migrate/20101104032051_create_stores.rb', line 2

def self.up
  create_table :stores do |t|
    t.string :cafepress_store_id

    t.timestamps
  end
end