bornhack-website/src/ircbot/migrations/0001_initial.py

36 lines
1,005 B
Python
Raw Normal View History

2017-01-30 11:05:11 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-01-29 20:29
2017-01-30 11:16:07 +00:00
2017-01-30 11:05:11 +00:00
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
2019-06-16 12:32:24 +00:00
dependencies = []
2017-01-30 11:05:11 +00:00
operations = [
migrations.CreateModel(
2019-06-16 12:32:24 +00:00
name="OutgoingIrcMessage",
2017-01-30 11:05:11 +00:00
fields=[
2019-06-16 12:32:24 +00:00
(
"id",
models.AutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("created", models.DateTimeField(auto_now_add=True)),
("updated", models.DateTimeField(auto_now=True)),
("target", models.CharField(max_length=100)),
("message", models.CharField(max_length=200)),
("processed", models.BooleanField(default=False)),
2017-01-30 11:05:11 +00:00
],
2019-06-16 12:32:24 +00:00
options={"abstract": False},
)
2017-01-30 11:05:11 +00:00
]