collab: Add plan
column to subscription_usages
(#28889)
This PR adds a `plan` column to the `subscription_usages` table. These tables don't have any records in them yet, so it's fine to make the column required without a default. Release Notes: - N/A
This commit is contained in:
parent
7bdde8f14f
commit
10507f9a4c
2 changed files with 6 additions and 0 deletions
|
@ -0,0 +1,4 @@
|
|||
alter table subscription_usages
|
||||
add column plan text not null;
|
||||
|
||||
create index ix_subscription_usages_on_plan on subscription_usages (plan);
|
Loading…
Add table
Add a link
Reference in a new issue