mirror of
https://github.com/neocities/neocities.git
synced 2025-07-26 04:18:22 +02:00
track subscription ids
This commit is contained in:
parent
5235286d8a
commit
609cee1c17
6 changed files with 147 additions and 86 deletions
9
migrations/048_add_subscription_id_to_sites.rb
Normal file
9
migrations/048_add_subscription_id_to_sites.rb
Normal file
|
@ -0,0 +1,9 @@
|
|||
Sequel.migration do
|
||||
up {
|
||||
DB.add_column :sites, :stripe_subscription_id, :text
|
||||
}
|
||||
|
||||
down {
|
||||
DB.drop_column :sites, :stripe_subscription_id
|
||||
}
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue