mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-07 13:32:57 +00:00
Switch to bigint
This commit is contained in:
committed by
Sasha Krassovsky
parent
b2e7249979
commit
65a98e425d
@@ -763,8 +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 integer NOT NULL DEFAULT 0)";
|
||||
query = "CREATE TABLE IF NOT EXISTS neon_migration.migration_id (id bigint NOT NULL DEFAULT 0)";
|
||||
client.simple_query(query)?;
|
||||
|
||||
query = "INSERT INTO neon_migration.migration_id VALUES (0) ON CONFLICT DO NOTHING";
|
||||
|
||||
Reference in New Issue
Block a user