소스 검색

Replaced "not A== B" with "A != B" in docs/howto/writing-migrations.txt.

Berker Peksag 7 년 전
부모
커밋
c362228556
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/howto/writing-migrations.txt

+ 1 - 1
docs/howto/writing-migrations.txt

@@ -22,7 +22,7 @@ attribute::
     from django.db import migrations
 
     def forwards(apps, schema_editor):
-        if not schema_editor.connection.alias == 'default':
+        if schema_editor.connection.alias != 'default':
             return
         # Your migration code goes here