Skip to content

Commit

Permalink
chore: add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
PetoMPP committed Dec 6, 2023
1 parent 8650a27 commit f6c6b1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion migrations/2023-10-21-124208_blog/down.sql
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
-- This file should undo anything in `up.sql`
DELETE FROM resources WHERE key = 'blog-intro';
DELETE FROM resources WHERE key = 'blog-intro' OR key = 'editor-intro';
3 changes: 2 additions & 1 deletion migrations/2023-10-21-124208_blog/up.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- Your SQL goes here
INSERT INTO resources (key, en, pl) VALUES
('blog-intro', '*TBD*', NULL);
('blog-intro', '*TBD*', NULL),
('editor-intro', '*TBD*', NULL);

0 comments on commit f6c6b1d

Please sign in to comment.