1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00

fix: attempt to fix invalid fixture query for postgres (fix #52)

This commit is contained in:
Ferdinand Mütsch
2020-09-12 16:32:43 +02:00
parent d60dddb550
commit 6e2f3e6731
5 changed files with 7 additions and 6 deletions

View File

@ -1,7 +1,8 @@
-- +migrate Up
-- SQL in section 'Up' is executed when this migration is applied
insert into key_string_values (`key`, `value`) values ('imprint', 'no content here');
insert into key_string_values ("key", "value") values ('imprint', 'no content here');
-- +migrate Down
-- SQL section 'Down' is executed when this migration is rolled back
delete from key_string_values where `key` = 'imprint';
SET SQL_MODE=ANSI_QUOTES;
delete from key_string_values where key = 'imprint';