mirror of
https://github.com/toeverything/AFFiNE.git
synced 2025-01-03 12:53:20 +03:00
8 lines
242 B
MySQL
8 lines
242 B
MySQL
|
-- AlterTable
|
||
|
ALTER TABLE "user_invoices" ALTER COLUMN "plan" DROP NOT NULL,
|
||
|
ALTER COLUMN "recurring" DROP NOT NULL,
|
||
|
ALTER COLUMN "reason" DROP NOT NULL;
|
||
|
|
||
|
-- CreateIndex
|
||
|
CREATE INDEX "user_invoices_user_id_idx" ON "user_invoices"("user_id");
|