-
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e488851
commit ef00635
Showing
4 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
Submodule dashboard-frontend
updated
from 10e90d to 5de132
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
-- RedefineTables | ||
PRAGMA foreign_keys=OFF; | ||
CREATE TABLE "new_AppInformation" ( | ||
"id" TEXT NOT NULL PRIMARY KEY, | ||
"fileName" TEXT NOT NULL, | ||
"uploadedFileName" TEXT NOT NULL, | ||
"path" TEXT NOT NULL, | ||
"platform" TEXT NOT NULL, | ||
"fileSize" TEXT NOT NULL DEFAULT '0', | ||
"created_at" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP | ||
); | ||
INSERT INTO "new_AppInformation" ("fileName", "id", "path", "platform", "uploadedFileName") SELECT "fileName", "id", "path", "platform", "uploadedFileName" FROM "AppInformation"; | ||
DROP TABLE "AppInformation"; | ||
ALTER TABLE "new_AppInformation" RENAME TO "AppInformation"; | ||
PRAGMA foreign_key_check; | ||
PRAGMA foreign_keys=ON; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule modules
updated
from 6fa86a to 6640f1