10 lines
258 B
SQL
10 lines
258 B
SQL
/*
|
|
Warnings:
|
|
|
|
- The `vatsim_cid` column on the `users` table would be dropped and recreated. This will lead to data loss if there is data in the column.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "users" DROP COLUMN "vatsim_cid",
|
|
ADD COLUMN "vatsim_cid" INTEGER;
|