Skip to content

Commit

Permalink
Rename outscale by scaleway
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime Naulleau committed Dec 6, 2024
1 parent 9e6b995 commit f893f38
Show file tree
Hide file tree
Showing 11 changed files with 519 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
BEGIN;

ALTER TABLE "files_context"."files" ALTER COLUMN "storage_provider" SET DATA TYPE text;
DROP TYPE "files_context"."storage_provider";
CREATE TYPE "files_context"."storage_provider" AS ENUM('SCALEWAY');
ALTER TABLE "files_context"."files" ALTER COLUMN "storage_provider" SET DATA TYPE "files_context"."storage_provider" USING "storage_provider"::"files_context"."storage_provider";

COMMIT;
Loading

0 comments on commit f893f38

Please sign in to comment.