# Generated by Django 3.2.8 on 2022-01-13 21:24 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('taskbar', '0005_auto_20220113_2308'), ] operations = [ migrations.AddField( model_name='exclusiveprogram', name='parameters', field=models.CharField(blank=True, default='', help_text='Run with arguments passed to executable', max_length=255), ), migrations.AddField( model_name='historicalexclusiveprogram', name='parameters', field=models.CharField(blank=True, default='', help_text='Run with arguments passed to executable', max_length=255), ), migrations.AddField( model_name='historicalutilitysoftware', name='parameters', field=models.CharField(blank=True, default='', help_text='Run with arguments passed to executable', max_length=255), ), migrations.AddField( model_name='utilitysoftware', name='parameters', field=models.CharField(blank=True, default='', help_text='Run with arguments passed to executable', max_length=255), ), ]