mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-10 00:42:06 +00:00

This should have been the case from the beginning, there are many things that would break if this was not followed.
20 lines
409 B
Python
20 lines
409 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('lists', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='mailinglist',
|
|
name='listname',
|
|
field=models.CharField(unique=True, max_length=64),
|
|
),
|
|
]
|