an unfinished start on proper paypal recurring integration

This commit is contained in:
Kyle Drake 2015-04-10 18:15:11 -07:00
parent 5346b7345e
commit c4376bc580
15 changed files with 175 additions and 53 deletions

View file

@ -0,0 +1,11 @@
Sequel.migration do
up {
DB.add_column :sites, :paypal_profile_id, String
DB.add_column :sites, :paypal_token, String
}
down {
DB.drop_column :sites, :paypal_profile_id
DB.drop_column :sites, :paypal_token
}
end