mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 21:27:49 +02:00
Rename DCC project into RAM
RAM: Railroad Assets Manager
This commit is contained in:
26
ram/driver/migrations/0001_initial.py
Normal file
26
ram/driver/migrations/0001_initial.py
Normal file
@@ -0,0 +1,26 @@
|
||||
# Generated by Django 4.0.3 on 2022-04-07 09:25
|
||||
|
||||
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)),
|
||||
('timeout', models.SmallIntegerField(default=250)),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Configuration',
|
||||
},
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user