mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
14 lines
407 B
MySQL
14 lines
407 B
MySQL
|
TRUNCATE {$NAMESPACE}_phortune.phortune_product;
|
||
|
|
||
|
ALTER TABLE {$NAMESPACE}_phortune.phortune_product
|
||
|
DROP status;
|
||
|
|
||
|
ALTER TABLE {$NAMESPACE}_phortune.phortune_product
|
||
|
DROP billingIntervalInMonths;
|
||
|
|
||
|
ALTER TABLE {$NAMESPACE}_phortune.phortune_product
|
||
|
DROP trialPeriodInDays;
|
||
|
|
||
|
ALTER TABLE {$NAMESPACE}_phortune.phortune_product
|
||
|
CHANGE priceInCents priceAsCurrency VARCHAR(64) NOT NULL collate utf8_bin;
|