src/core/migrations/0005_set_semantic_link_level.py
author ymh <ymh.work@gmail.com>
Tue, 25 Jun 2013 15:34:18 +0200
changeset 35 859862939996
child 48 f4fadc1b9d70
permissions -rw-r--r--
add qualifier on the wikipedia link
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
35
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
# -*- coding: utf-8 -*-
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
from ..utils import show_progress
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
from core.models.term import TERM_WK_LINK_SEMANTIC_LEVEL_DICT
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
from django.db import transaction
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
from south.v2 import DataMigration
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
class Migration(DataMigration):
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
    def forwards(self, orm):
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
        "Write your forwards methods here."
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
        # Note: Remember to use orm['appname.ModelName'] rather than "from appname.models..."
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
        total = orm['core.Term'].objects.all().count()
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
        
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    14
        transaction.enter_transaction_management(True)
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
        transaction.managed()
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
        
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
        writer = None
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    18
        for i,term in enumerate(orm['core.Term'].objects.all()):
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    19
            writer = show_progress(i+1, total, u"Processing term %s" % term.label, 50, writer)
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    20
            term.link_semantic_level = TERM_WK_LINK_SEMANTIC_LEVEL_DICT['--'] if term.url_status is not None else None
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    21
            term.save()
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    22
            
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    23
            if not ((i+1) % 5000):
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    24
                transaction.commit() 
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    25
        
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    26
        transaction.commit()
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    27
        transaction.leave_transaction_management()
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    28
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    29
    def backwards(self, orm):
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    30
        pass
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    31
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    32
    models = {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    33
        u'auth.group': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    34
            'Meta': {'object_name': 'Group'},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    35
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    36
            'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    37
            'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': u"orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    38
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    39
        u'auth.permission': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    40
            'Meta': {'ordering': "(u'content_type__app_label', u'content_type__model', u'codename')", 'unique_together': "((u'content_type', u'codename'),)", 'object_name': 'Permission'},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    41
            'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    42
            'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['contenttypes.ContentType']"}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    43
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    44
            'name': ('django.db.models.fields.CharField', [], {'max_length': '50'})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    45
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    46
        u'contenttypes.contenttype': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    47
            'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    48
            'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    49
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    50
            'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    51
            'name': ('django.db.models.fields.CharField', [], {'max_length': '100'})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    52
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    53
        'core.autrnoticeterm': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    54
            'Meta': {'object_name': 'AutrNoticeTerm', '_ormbases': ['core.NoticeTerm']},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    55
            u'noticeterm_ptr': ('django.db.models.fields.related.OneToOneField', [], {'to': "orm['core.NoticeTerm']", 'unique': 'True', 'primary_key': 'True'})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    56
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    57
        'core.domnnoticeterm': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    58
            'Meta': {'object_name': 'DomnNoticeTerm', '_ormbases': ['core.NoticeTerm']},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    59
            u'noticeterm_ptr': ('django.db.models.fields.related.OneToOneField', [], {'to': "orm['core.NoticeTerm']", 'unique': 'True', 'primary_key': 'True'})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    60
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    61
        'core.ecolnoticeterm': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    62
            'Meta': {'object_name': 'EcolNoticeTerm', '_ormbases': ['core.NoticeTerm']},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    63
            u'noticeterm_ptr': ('django.db.models.fields.related.OneToOneField', [], {'to': "orm['core.NoticeTerm']", 'unique': 'True', 'primary_key': 'True'})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    64
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    65
        'core.epoqnoticeterm': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    66
            'Meta': {'object_name': 'EpoqNoticeTerm', '_ormbases': ['core.NoticeTerm']},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    67
            u'noticeterm_ptr': ('django.db.models.fields.related.OneToOneField', [], {'to': "orm['core.NoticeTerm']", 'unique': 'True', 'primary_key': 'True'})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    68
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    69
        'core.lieuxnoticeterm': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    70
            'Meta': {'object_name': 'LieuxNoticeTerm', '_ormbases': ['core.NoticeTerm']},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    71
            u'noticeterm_ptr': ('django.db.models.fields.related.OneToOneField', [], {'to': "orm['core.NoticeTerm']", 'unique': 'True', 'primary_key': 'True'})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    72
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    73
        'core.notice': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    74
            'Meta': {'object_name': 'Notice'},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    75
            'adpt': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    76
            'appl': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    77
            'aptn': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    78
            'attr': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    79
            'autr': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    80
            'autr_terms': ('django.db.models.fields.related.ManyToManyField', [], {'related_name': "'autr+'", 'symmetrical': 'False', 'through': "orm['core.AutrNoticeTerm']", 'to': "orm['core.Term']"}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    81
            'bibl': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    82
            'comm': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    83
            'contact': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    84
            'coor': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    85
            'copy': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    86
            'dacq': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    87
            'data': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    88
            'dation': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    89
            'ddpt': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    90
            'decv': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    91
            'deno': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    92
            'depo': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    93
            'desc': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    94
            'desy': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    95
            'dims': ('django.db.models.fields.CharField', [], {'max_length': '2048', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    96
            'dmaj': ('django.db.models.fields.DateField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    97
            'dmis': ('django.db.models.fields.DateField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    98
            'domn': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
    99
            'domn_terms': ('django.db.models.fields.related.ManyToManyField', [], {'related_name': "'domn+'", 'symmetrical': 'False', 'through': "orm['core.DomnNoticeTerm']", 'to': "orm['core.Term']"}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   100
            'drep': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   101
            'ecol': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   102
            'ecol_terms': ('django.db.models.fields.related.ManyToManyField', [], {'related_name': "'ecol+'", 'symmetrical': 'False', 'through': "orm['core.EcolNoticeTerm']", 'to': "orm['core.Term']"}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   103
            'epoq': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   104
            'epoq_terms': ('django.db.models.fields.related.ManyToManyField', [], {'related_name': "'epoq+'", 'symmetrical': 'False', 'through': "orm['core.EpoqNoticeTerm']", 'to': "orm['core.Term']"}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   105
            'etat': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   106
            'expo': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   107
            'gene': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   108
            'geohi': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   109
            'hist': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   110
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   111
            'image': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   112
            'insc': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   113
            'inv': ('django.db.models.fields.CharField', [], {'max_length': '2048', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   114
            'label': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   115
            'labo': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   116
            'lieux': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   117
            'lieux_terms': ('django.db.models.fields.related.ManyToManyField', [], {'related_name': "'lieux+'", 'symmetrical': 'False', 'through': "orm['core.LieuxNoticeTerm']", 'to': "orm['core.Term']"}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   118
            'loca': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   119
            'loca2': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   120
            'mill': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   121
            'milu': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   122
            'mosa': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   123
            'msgcom': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   124
            'museo': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   125
            'nsda': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   126
            'onom': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   127
            'paut': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   128
            'pdat': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   129
            'pdec': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   130
            'peoc': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   131
            'peri': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   132
            'peri_terms': ('django.db.models.fields.related.ManyToManyField', [], {'related_name': "'peri+'", 'symmetrical': 'False', 'through': "orm['core.PeriNoticeTerm']", 'to': "orm['core.Term']"}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   133
            'peru': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   134
            'phot': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   135
            'pins': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   136
            'plieux': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   137
            'prep': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   138
            'puti': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   139
            'reda': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   140
            'ref': ('django.db.models.fields.CharField', [], {'max_length': '20', 'unique': 'True', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   141
            'refim': ('django.db.models.fields.CharField', [], {'max_length': '2048', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   142
            'repr': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   143
            'repr_terms': ('django.db.models.fields.related.ManyToManyField', [], {'related_name': "'repr+'", 'symmetrical': 'False', 'through': "orm['core.ReprNoticeTerm']", 'to': "orm['core.Term']"}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   144
            'srep': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   145
            'srep_terms': ('django.db.models.fields.related.ManyToManyField', [], {'related_name': "'srep+'", 'symmetrical': 'False', 'through': "orm['core.SrepNoticeTerm']", 'to': "orm['core.Term']"}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   146
            'stat': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   147
            'tech': ('django.db.models.fields.CharField', [], {'max_length': '2048', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   148
            'tico': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   149
            'titr': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   150
            'util': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   151
            'video': ('django.db.models.fields.CharField', [], {'max_length': '2048', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   152
            'www': ('django.db.models.fields.CharField', [], {'max_length': '512', 'null': 'True', 'blank': 'True'})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   153
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   154
        'core.noticeimage': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   155
            'Meta': {'object_name': 'NoticeImage'},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   156
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   157
            'notice': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'images'", 'to': "orm['core.Notice']"}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   158
            'relative_url': ('django.db.models.fields.URLField', [], {'unique': 'True', 'max_length': "'1024'"})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   159
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   160
        'core.noticeterm': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   161
            'Meta': {'object_name': 'NoticeTerm'},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   162
            'graph': ('django.db.models.fields.URLField', [], {'max_length': '2048', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   163
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   164
            'notice': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['core.Notice']"}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   165
            'term': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['core.Term']"})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   166
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   167
        'core.perinoticeterm': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   168
            'Meta': {'object_name': 'PeriNoticeTerm', '_ormbases': ['core.NoticeTerm']},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   169
            u'noticeterm_ptr': ('django.db.models.fields.related.OneToOneField', [], {'to': "orm['core.NoticeTerm']", 'unique': 'True', 'primary_key': 'True'})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   170
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   171
        'core.reprnoticeterm': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   172
            'Meta': {'object_name': 'ReprNoticeTerm', '_ormbases': ['core.NoticeTerm']},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   173
            u'noticeterm_ptr': ('django.db.models.fields.related.OneToOneField', [], {'to': "orm['core.NoticeTerm']", 'unique': 'True', 'primary_key': 'True'})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   174
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   175
        'core.srepnoticeterm': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   176
            'Meta': {'object_name': 'SrepNoticeTerm', '_ormbases': ['core.NoticeTerm']},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   177
            u'noticeterm_ptr': ('django.db.models.fields.related.OneToOneField', [], {'to': "orm['core.NoticeTerm']", 'unique': 'True', 'primary_key': 'True'})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   178
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   179
        'core.term': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   180
            'Meta': {'object_name': 'Term'},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   181
            'alternative_wikipedia_pageid': ('django.db.models.fields.BigIntegerField', [], {'db_index': 'True', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   182
            'alternative_wikipedia_url': ('django.db.models.fields.URLField', [], {'db_index': 'True', 'max_length': '2048', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   183
            'created_at': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   184
            'dbpedia_uri': ('django.db.models.fields.URLField', [], {'db_index': 'True', 'max_length': '2048', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   185
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   186
            'label': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'db_index': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   187
            'lang': ('django.db.models.fields.CharField', [], {'db_index': 'True', 'max_length': '128', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   188
            'link_semantic_level': ('django.db.models.fields.IntegerField', [], {'default': 'None', 'null': 'True', 'db_index': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   189
            'normalized_label': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'db_index': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   190
            'thesaurus': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['core.Thesaurus']"}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   191
            'uri': ('django.db.models.fields.URLField', [], {'db_index': 'True', 'max_length': '2048', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   192
            'url_status': ('django.db.models.fields.IntegerField', [], {'default': 'None', 'null': 'True', 'db_index': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   193
            'validated': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'db_index': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   194
            'validation_date': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   195
            'validator': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['jocondelab.User']", 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   196
            'wikipedia_edition': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   197
            'wikipedia_pageid': ('django.db.models.fields.BigIntegerField', [], {'db_index': 'True', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   198
            'wikipedia_revision_id': ('django.db.models.fields.BigIntegerField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   199
            'wikipedia_url': ('django.db.models.fields.URLField', [], {'db_index': 'True', 'max_length': '2048', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   200
            'wp_alternative_label': ('django.db.models.fields.CharField', [], {'db_index': 'True', 'max_length': '1024', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   201
            'wp_label': ('django.db.models.fields.CharField', [], {'db_index': 'True', 'max_length': '1024', 'null': 'True', 'blank': 'True'})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   202
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   203
        'core.termlabel': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   204
            'Meta': {'object_name': 'TermLabel'},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   205
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   206
            'label': ('django.db.models.fields.CharField', [], {'max_length': '1024', 'db_index': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   207
            'lang': ('django.db.models.fields.CharField', [], {'db_index': 'True', 'max_length': '128', 'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   208
            'term': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'alternative_labels'", 'to': "orm['core.Term']"})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   209
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   210
        'core.thesaurus': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   211
            'Meta': {'ordering': "['label']", 'object_name': 'Thesaurus'},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   212
            'description': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   213
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   214
            'label': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '128', 'db_index': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   215
            'title': ('django.db.models.fields.CharField', [], {'max_length': '1024'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   216
            'uri': ('django.db.models.fields.URLField', [], {'db_index': 'True', 'max_length': '2048', 'null': 'True', 'blank': 'True'})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   217
        },
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   218
        u'jocondelab.user': {
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   219
            'Meta': {'object_name': 'User'},
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   220
            'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   221
            'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   222
            'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   223
            'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': u"orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   224
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   225
            'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   226
            'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   227
            'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   228
            'language': ('django.db.models.fields.CharField', [], {'default': "'fr'", 'max_length': '2'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   229
            'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   230
            'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   231
            'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   232
            'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': u"orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}),
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   233
            'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'})
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   234
        }
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   235
    }
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   236
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   237
    complete_apps = ['core']
859862939996 add qualifier on the wikipedia link
ymh <ymh.work@gmail.com>
parents:
diff changeset
   238
    symmetrical = True