mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-27 09:58:12 +08:00
* Black linting * Adding Black to dev dependencies and upping minimal python to 3.6.2 for compatibility * Updating packages * Removing pip-tools input and exporting requirements with poetry * Deleting old setup files and test runner * Trying 1.3.7 * Looser extras requirements to prevent conflicts * Sorted imports with isort * Added iSort to dev dependencies * Fixes localtime for naive setups
25 lines
710 B
Python
25 lines
710 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('django_q', '0006_auto_20150805_1817'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='OrmQ',
|
|
fields=[
|
|
('id', models.AutoField(primary_key=True, auto_created=True, verbose_name='ID', serialize=False)),
|
|
('key', models.CharField(max_length=100)),
|
|
('payload', models.TextField()),
|
|
('lock', models.DateTimeField(null=True)),
|
|
],
|
|
options={
|
|
'verbose_name_plural': 'Queued tasks',
|
|
'verbose_name': 'Queued task',
|
|
},
|
|
),
|
|
]
|