go-data-access/migrations/0001_add_table_test_counter.sql
2024-06-14 23:02:39 -04:00

11 lines
211 B
SQL

DROP TABLE IF EXISTS test_counter;
CREATE TABLE "test_counter" (
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"counter" integer NOT NULL
);
INSERT INTO test_counter (
id,
counter
) VALUES ( 0,0 );