# Generated by Django 3.2.8 on 2022-01-13 21:05 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('taskbar', '0002_auto_20211109_1127'), ] operations = [ migrations.AddField( model_name='historicalprogram', name='parameters', field=models.CharField(default='', help_text='Run with arguments passed to executable', max_length=255), ), migrations.AddField( model_name='historicalsite', name='open_with_default_browser', field=models.BooleanField(default=True, help_text='Open with default system browser (edge/chrome)'), ), migrations.AddField( model_name='program', name='parameters', field=models.CharField(default='', help_text='Run with arguments passed to executable', max_length=255), ), migrations.AddField( model_name='site', name='open_with_default_browser', field=models.BooleanField(default=True, help_text='Open with default system browser (edge/chrome)'), ), ]