Skip to content

Commit

Permalink
fix: lost comments
Browse files Browse the repository at this point in the history
  • Loading branch information
OXeu committed Jul 9, 2024
1 parent 26e4006 commit 2e8f44c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion server/sql/0002.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
PRAGMA foreign_keys=off;
--> statement-breakpoint
CREATE TABLE IF NOT EXISTS `feeds_new` (
`id` integer PRIMARY KEY NOT NULL,
`alias` text,
Expand All @@ -19,4 +21,6 @@ FROM `feeds`;
--> statement-breakpoint
DROP TABLE `feeds`;
--> statement-breakpoint
ALTER TABLE `feeds_new` RENAME TO `feeds`;
ALTER TABLE `feeds_new` RENAME TO `feeds`;
--> statement-breakpoint
PRAGMA foreign_keys=on;

0 comments on commit 2e8f44c

Please sign in to comment.