From 4136beb5c2ead66e6e4d7640ab635adacb621e9b Mon Sep 17 00:00:00 2001 From: Adela Date: Wed, 1 Oct 2025 16:34:33 +0200 Subject: [PATCH] Create table t1 with id and name columns --- migrations/v1.0.0_create_t1.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 migrations/v1.0.0_create_t1.sql diff --git a/migrations/v1.0.0_create_t1.sql b/migrations/v1.0.0_create_t1.sql new file mode 100644 index 0000000..afc0310 --- /dev/null +++ b/migrations/v1.0.0_create_t1.sql @@ -0,0 +1,4 @@ +CREATE TABLE t1( + id INT PRIMARY KEY, + name TEXT +);