diff --git a/db-scripts/sample-schema.sql b/db-scripts/sample-schema.sql new file mode 100644 index 0000000..f1b62a6 --- /dev/null +++ b/db-scripts/sample-schema.sql @@ -0,0 +1,9 @@ +DROP TABLE IF EXISTS test; +create table test( + id bigint, + name varchar (2000), + tag char(1) +); +insert into test values (1, 'Bob', NULL); +insert into test values (2, 'Jane', NULL); +insert into test values (3, 'John', NULL); \ No newline at end of file