mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-02-23 23:02:00 +00:00
12 lines
299 B
MySQL
12 lines
299 B
MySQL
|
/*
|
||
|
Warnings:
|
||
|
|
||
|
- You are about to drop the column `firstPaymentDone` on the `user` table. All the data in the column will be lost.
|
||
|
|
||
|
*/
|
||
|
-- AlterTable
|
||
|
ALTER TABLE "Device" ADD COLUMN "registered" BOOLEAN NOT NULL DEFAULT false;
|
||
|
|
||
|
-- AlterTable
|
||
|
ALTER TABLE "user" DROP COLUMN "firstPaymentDone";
|