10 lines
358 B
SQL
10 lines
358 B
SQL
/*
|
|
Warnings:
|
|
- The primary key for the `settings` table will be changed. If it partially fails, the table could be left without primary key constraint.
|
|
- You are about to drop the column `id` on the `settings` table. All the data in the column will be lost.
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE `Settings`
|
|
DROP PRIMARY KEY,
|
|
DROP COLUMN `id`,
|
|
ADD PRIMARY KEY (`key`); |