mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-03 15:38:59 +00:00

When migrating on existing installations, run the python manage.py migrate --fake-initial command.
24 lines
674 B
Python
24 lines
674 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='QueuedMail',
|
|
fields=[
|
|
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
|
('sender', models.EmailField(max_length=100)),
|
|
('receiver', models.EmailField(max_length=100)),
|
|
('fullmsg', models.TextField()),
|
|
('usergenerated', models.BooleanField(default=False)),
|
|
],
|
|
),
|
|
]
|