Reinit wg backend
This commit is contained in:
27
wg_api/migrations/0001_initial.py
Normal file
27
wg_api/migrations/0001_initial.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# Generated by Django 4.1.2 on 2022-10-13 07:56
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='user_model',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('wgName', models.CharField(max_length=300)),
|
||||
('wgMail', models.EmailField(max_length=254)),
|
||||
('wgKey', models.CharField(max_length=20)),
|
||||
('wgDin', models.IntegerField()),
|
||||
('wgDout', models.IntegerField()),
|
||||
('wgStatus', models.CharField(max_length=254)),
|
||||
('wgTStamp', models.CharField(max_length=254)),
|
||||
],
|
||||
),
|
||||
]
|
||||
0
wg_api/migrations/__init__.py
Normal file
0
wg_api/migrations/__init__.py
Normal file
BIN
wg_api/migrations/__pycache__/0001_initial.cpython-310.pyc
Normal file
BIN
wg_api/migrations/__pycache__/0001_initial.cpython-310.pyc
Normal file
Binary file not shown.
BIN
wg_api/migrations/__pycache__/__init__.cpython-310.pyc
Normal file
BIN
wg_api/migrations/__pycache__/__init__.cpython-310.pyc
Normal file
Binary file not shown.
Reference in New Issue
Block a user