diff --git a/db/migrations/postgres/000032_create_tokenaccount_table.up.sql b/db/migrations/postgres/000032_create_tokenaccount_table.up.sql index ab6898a0e3..fe944a5264 100644 --- a/db/migrations/postgres/000032_create_tokenaccount_table.up.sql +++ b/db/migrations/postgres/000032_create_tokenaccount_table.up.sql @@ -2,7 +2,7 @@ BEGIN; DROP TABLE IF EXISTS tokenaccount; CREATE TABLE tokenaccount ( - seq INTEGER PRIMARY KEY AUTOINCREMENT, + seq SERIAL PRIMARY KEY, pool_protocol_id VARCHAR(1024) NOT NULL, token_index VARCHAR(1024), identity VARCHAR(1024) NOT NULL,