spree_paypal_express/db/migrate/20100224133156_create_paypa...

15 lines
287 B
Ruby

class CreatePaypalAccounts < ActiveRecord::Migration
def self.up
create_table :paypal_accounts do |t|
t.string :email
t.string :payer_id
t.string :payer_country
t.string :payer_status
end
end
def self.down
drop_table :paypal_accounts
end
end