From 4656329ef004ce4a5481d50ae3941d0d0c2c628a Mon Sep 17 00:00:00 2001 From: Sylvain LE GAL Date: Thu, 5 May 2022 23:20:17 +0200 Subject: [PATCH] fixup! [ADD] test for command execute-script-sql --- tests/extra_script_B/pre-migration-custom_test.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/extra_script_B/pre-migration-custom_test.sql diff --git a/tests/extra_script_B/pre-migration-custom_test.sql b/tests/extra_script_B/pre-migration-custom_test.sql new file mode 100644 index 0000000..0181ba1 --- /dev/null +++ b/tests/extra_script_B/pre-migration-custom_test.sql @@ -0,0 +1,7 @@ +CREATE TABLE city ( + id int, + name varchar +); + +insert INTO city (id, name) values (1, 'Chicago'); +insert INTO city (id, name) values (2, 'Cavalaire Sur Mer');