This completes the stripe integration for existing sites

This commit is contained in:
Kyle Drake 2014-04-19 14:02:19 -07:00
parent 4aa57086e0
commit 98496698cb
No known key found for this signature in database
GPG key ID: 8BE721072E1864BE
15 changed files with 364 additions and 33 deletions

View file

@ -0,0 +1,9 @@
Sequel.migration do
up {
DB.add_column :sites, :plan_ended, :boolean, default: false
}
down {
DB.drop_column :sites, :plan_ended
}
end