mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 05:07:50 +02:00
Include migrations and missing files
This commit is contained in:
0
daemons/__init__.py
Normal file
0
daemons/__init__.py
Normal file
25
dcc/driver/migrations/0001_initial.py
Normal file
25
dcc/driver/migrations/0001_initial.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# Generated by Django 4.0 on 2021-12-31 10:41
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='DriverConfiguration',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('remote_host', models.GenericIPAddressField(default='192.168.4.1', protocol='IPv4')),
|
||||
('remote_port', models.SmallIntegerField(default=2560)),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Driver Configuration',
|
||||
},
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user