# Generated by Django 2.1.7 on 2020-03-20 16:09 from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='SecurityLevel', fields=[ ('id', models.IntegerField(db_column='id', primary_key=True, serialize=False)), ('nome', models.CharField(db_column='nome', max_length=50)), ('enabled', models.BooleanField(db_column='enabled', default=True)), ], options={ 'db_table': 'security_level', 'ordering': ['id'], 'managed': False, }, ), migrations.CreateModel( name='SecurityOptions', fields=[ ('id', models.IntegerField(db_column='id', primary_key=True, serialize=False)), ('nome', models.CharField(db_column='nome', max_length=50)), ('comando', models.CharField(db_column='comando', max_length=128)), ('acronimo', models.CharField(db_column='acronimo', max_length=32)), ('immagine', models.CharField(db_column='immagine', max_length=64)), ('ordine', models.IntegerField(db_column='ordine')), ('visibile', models.BooleanField(db_column='visibile')), ], options={ 'db_table': 'security_options', 'ordering': ['id'], 'managed': False, }, ), migrations.CreateModel( name='SecurityRow', fields=[ ('id', models.IntegerField(db_column='id', primary_key=True, serialize=False)), ('enabled', models.BooleanField(db_column='enabled', default=True)), ], options={ 'db_table': 'security_row', 'ordering': ['id'], 'managed': False, }, ), ]