mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
Probably should split into separate repo at some point, but committing here so I don't lose it
20 lines
430 B
Python
20 lines
430 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('DiscourseAuth', '0004_discourseuserlink'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='discourseuserlink',
|
|
name='discourse_user_id',
|
|
field=models.IntegerField(unique=True),
|
|
),
|
|
]
|