Change PackagePromotion to BulkPricingPackage (#2096)

* Change PackagePromotion to BulkPricingPackage

* More name changes

* Fix some test names

* Change token type "BULK" to "BULK_PRICING"

* Fix missed token_type reference

* Add todo to remove package type
This commit is contained in:
sarahcaseybot 2023-08-22 16:39:24 -04:00 committed by GitHub
parent f59c387b9c
commit 1dcbc9e0cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
43 changed files with 879 additions and 836 deletions

View file

@ -498,12 +498,12 @@
create table "PackagePromotion" (
package_promotion_id bigserial not null,
package_price_amount numeric(19, 2) not null,
package_price_currency text not null,
last_notification_sent timestamptz,
max_creates int4 not null,
max_domains int4 not null,
next_billing_date timestamptz not null,
package_price_amount numeric(19, 2) not null,
package_price_currency text not null,
token text not null,
primary key (package_promotion_id)
);