0010_user_extra.py 518 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.1 on 2017-06-03 22:15
  3. from __future__ import unicode_literals
  4. import django.contrib.postgres.fields.jsonb
  5. from django.db import migrations
  6. class Migration(migrations.Migration):
  7. dependencies = [
  8. ('misago_users', '0009_redo_partial_indexes'),
  9. ]
  10. operations = [
  11. migrations.AddField(
  12. model_name='user',
  13. name='extra',
  14. field=django.contrib.postgres.fields.jsonb.JSONField(default=dict),
  15. ),
  16. ]