소스 검색

Changelog: Postgres recipe for how to change null=False to True. Thanks to MH_

Ask Solem 15 년 전
부모
커밋
72351b2c35
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      Changelog

+ 4 - 0
Changelog

@@ -542,6 +542,10 @@ Important notes
 
         ALTER TABLE celery_taskmeta MODIFY result TEXT NULL
 
+    PostgreSQL::
+
+        ALTER TABLE celery_taskmeta ALTER COLUMN result DROP NOT NULL
+
 * Removed ``Task.rate_limit_queue_type``, as it was not really useful
   and made it harder to refactor some parts.