24 lines
728 B
Python
24 lines
728 B
Python
# Generated by Django 3.2.12 on 2022-02-24 21:25
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('products', '0007_alter_systemlog_datetime'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Counter',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(db_index=True, max_length=128, unique=True)),
|
|
('params', models.TextField(null=True)),
|
|
('datetime', models.DateTimeField(auto_now=True)),
|
|
('count', models.IntegerField()),
|
|
],
|
|
),
|
|
]
|