Skip to content

Commit

Permalink
Use BISERIAL instead of SERIAL in migration
Browse files Browse the repository at this point in the history
  • Loading branch information
flvndvd committed Jan 31, 2025
1 parent e5ea24d commit b94458d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions front/migrations/db/migration_162.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- Migration created on Jan 27, 2025
CREATE TABLE IF NOT EXISTS "agent_reasoning_configurations" (
"id" SERIAL,
"id" BIGSERIAL,
"createdAt" TIMESTAMP WITH TIME ZONE NOT NULL,
"updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL,
"sId" VARCHAR(255) NOT NULL,
Expand All @@ -20,7 +20,7 @@ CREATE INDEX CONCURRENTLY "agent_reasoning_configurations_agent_configuration_id
CREATE INDEX CONCURRENTLY "agent_reasoning_configurations_workspace_id" ON "agent_reasoning_configurations" ("workspaceId");

CREATE TABLE IF NOT EXISTS "agent_reasoning_actions" (
"id" SERIAL,
"id" BIGSERIAL,
"createdAt" TIMESTAMP WITH TIME ZONE NOT NULL,
"updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL,
"runId" VARCHAR(255),
Expand Down

0 comments on commit b94458d

Please sign in to comment.