Skip to content

Commit

Permalink
Merge pull request #105 from Scale3-Labs/rohit/S3EN-2285-add-missing-…
Browse files Browse the repository at this point in the history
…migration

Add missing migration
  • Loading branch information
rohit-kadhe authored May 16, 2024
2 parents 3e09cc0 + 52589fd commit 887021a
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
-- Remove columns
ALTER TABLE "Evaluation" DROP COLUMN "model",
DROP COLUMN "prompt",
DROP COLUMN "spanStartTime";
-- Alter columns to be nullable
ALTER TABLE "Evaluation"
ALTER COLUMN "ltUserId" DROP NOT NULL,
ALTER COLUMN "ltUserScore" DROP NOT NULL,
ALTER COLUMN "testId" DROP NOT NULL;

0 comments on commit 887021a

Please sign in to comment.