blob: 469b453971b41da5ea2274b3e7c75bd3c797ba32 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/*
Warnings:
- You are about to drop the `Shortcut` table. If the table is not empty, all the data it contains will be lost.
*/
-- DropTable
PRAGMA foreign_keys=off;
DROP TABLE "Shortcut";
PRAGMA foreign_keys=on;
|