Open afifurrohman-id opened 2 months ago
Hi @a8m also can i ask does atlas have concept called down migration file?
Hi @a8m also can i ask does atlas have concept called down migration file?
okay my bad, based on this docs atlas use different approach: docs
Hello in my case i have table:
smallint
type toboolean
)-- Update the new tmp column with value converted to boolean from old column data UPDATE "prefix"."a" SET "yes_tmp" = CASE WHEN "yes" = 0 THEN FALSE ELSE TRUE END;
-- Drop the old column ALTER TABLE "prefix"."a" DROP COLUMN "yes";
-- Rename the new tmp column to old column name ALTER TABLE "prefix"."a" RENAME COLUMN "yes_tmp" TO "yes";