Skip to content

Commit

Permalink
update help text for TimecardNote enabled field (#1067)
Browse files Browse the repository at this point in the history
  • Loading branch information
timoballard authored Apr 23, 2020
1 parent f968a4e commit b126dab
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tock/hours/migrations/0054_auto_20200423_1523.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.12 on 2020-04-23 19:23

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('hours', '0053_auto_20200422_1228'),
]

operations = [
migrations.AlterField(
model_name='timecardnote',
name='enabled',
field=models.BooleanField(default=True, help_text='Toggle whether or not the note is displayed in a timecard. Note that when this is checked any start and end date defined below will be ignored.'),
),
]

0 comments on commit b126dab

Please sign in to comment.