mirror of
https://github.com/Eugeny/tabby-web.git
synced 2025-08-16 14:21:53 +00:00
__pycache__
backend
tabby
app
management
migrations
0001_initial.py
0002_gateway.py
0003_auto_20210711_1855.py
0004_sync_token.py
0005_user_force_pro.py
0006_config_name.py
__init__.py
__init__.py
admin.py
api.py
apps.py
gateway.py
models.py
sponsors.py
tests.py
urls.py
views.py
__init__.py
asgi.py
middleware.py
settings.py
urls.py
wsgi.py
.dockerignore
.gitignore
Dockerfile
cloudbuild.yaml
gunicorn.conf.py
manage.py
poetry.lock
pyproject.toml
start.sh
frontend
.editorconfig
.flake8
.gitignore
24 lines
691 B
Python
24 lines
691 B
Python
# Generated by Django 3.2.3 on 2021-07-08 20:25
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('app', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Gateway',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('host', models.CharField(max_length=255)),
|
|
('port', models.IntegerField(default=1234)),
|
|
('enabled', models.BooleanField(default=True)),
|
|
('secure', models.BooleanField(default=True)),
|
|
],
|
|
),
|
|
]
|