From 6d8df2579b9b23a678fb4f0c0872a61e828ed7bc Mon Sep 17 00:00:00 2001 From: Sasha Krassovsky Date: Fri, 5 Jan 2024 00:29:54 -0800 Subject: [PATCH] Fix dumb thing --- compute_tools/src/spec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compute_tools/src/spec.rs b/compute_tools/src/spec.rs index 0bf0ea2b9a..87b9e0887e 100644 --- a/compute_tools/src/spec.rs +++ b/compute_tools/src/spec.rs @@ -763,7 +763,7 @@ END $$; let mut query = "CREATE SCHEMA IF NOT EXISTS neon_migration"; client.simple_query(query)?; - query = "CREATE TABLE IF NOT EXISTS neon_migration.migration_id (id serial PRIMARY KEY, value integer NOT NULL DEFAULT 0)"; + query = "CREATE TABLE IF NOT EXISTS neon_migration.migration_id (id integer NOT NULL DEFAULT 0)"; client.simple_query(query)?; query = "INSERT INTO neon_migration.migration_id VALUES (0) ON CONFLICT DO NOTHING";