services-flake/nix/postgres/test.sql
Rohit Singh d6b73e401e
Adding option initialDumps to Postgres (#67)
---------

Co-authored-by: Shivaraj B H <sbh69840@gmail.com>
2023-12-26 15:15:32 +05:30

5 lines
109 B
SQL

CREATE TABLE users (id INT PRIMARY KEY, user_name VARCHAR(25));
INSERT INTO users values (1, 'test_user');