joeni

0019_auto_20180306_1317.py

1
# Generated by Django 2.0b1 on 2018-03-06 13:17
2
3
from django.db import migrations, models
4
5
6
class Migration(migrations.Migration):
7
8
    dependencies = [
9
        ('administration', '0018_auto_20180207_0530'),
10
    ]
11
12
    operations = [
13
        migrations.AddField(
14
            model_name='room',
15
            name='electrical_plugs',
16
            field=models.PositiveSmallIntegerField(default=0, help_text='The amount of electrical plugs that are available to the people for free use. Electrical plugs that are more or less constantly occupied by permanent equipment (such as computers, beamers, ...) are excluded from counting.'),
17
            preserve_default=False,
18
        ),
19
        migrations.AddField(
20
            model_name='room',
21
            name='exterior_window',
22
            field=models.BooleanField(default=True, help_text='Indicates if this room has a window to the outside.'),
23
        ),
24
        migrations.AddField(
25
            model_name='room',
26
            name='loose_tables',
27
            field=models.BooleanField(default=True, help_text="If true, the tables in this room can be moved freely. If false, they're bolted down in their positions."),
28
        ),
29
        migrations.AddField(
30
            model_name='room',
31
            name='software_available',
32
            field=models.TextField(blank=True, help_text='Some software used at the university is proprietary, and thus not available at every system. If certain software is installed on the computers in this room that cannot be found on other computers, list them here.'),
33
        ),
34
        migrations.AlterField(
35
            model_name='room',
36
            name='seats',
37
            field=models.PositiveSmallIntegerField(help_text='The amount of available seats in this room.'),
38
        ),
39
    ]
40