# HG changeset patch # User Peter Sanchez # Date 1417395987 28800 # Sun Nov 30 17:06:27 2014 -0800 # Node ID 0175e86c6a01323e9bffdfc3ba35c8c589995b4a # Parent b9bace094db312f8ee1b679195d52568bb02054d Updated initial migration for help text changes. Silly Django migrations... diff --git a/trello_broker/migrations/0001_initial.py b/trello_broker/migrations/0001_initial.py --- a/trello_broker/migrations/0001_initial.py +++ b/trello_broker/migrations/0001_initial.py @@ -19,7 +19,7 @@ ('modified', models.DateTimeField(default=django.utils.timezone.now)), ('name', models.CharField(help_text='Name of the repo. Used for internal identification', max_length=100)), ('slug', models.SlugField(help_text='Slug ID given by BitBucket for this repository.', max_length=100)), - ('access_key', models.CharField(help_text='Secret key used to "authenticate" the request. If saved here the key must be appended to the BitBucket hook URL like so: http://yourserver.com/broker/?access_key=', max_length=100, blank=True)), + ('access_key', models.CharField(help_text='Secret key used to "authenticate" the request. If saved here the key must be appended to the BitBucket hook URL like so: http://yourserver.com/broker/?access_key=YOUR_ACCESS_KEY', max_length=100, blank=True)), ], options={ 'verbose_name': 'BitBucket Repository', @@ -86,7 +86,7 @@ ('modified', models.DateTimeField(default=django.utils.timezone.now)), ('name', models.CharField(help_text='Name of the account. Used for internal identification', max_length=100)), ('api_key', models.CharField(help_text='Get this from https://trello.com/1/appKey/generate', max_length=100)), - ('api_token', models.CharField(help_text='Get this from https://trello.com/1/authorize?key=&name=&expiration=never&response_type=token&scope=read,write', max_length=100)), + ('api_token', models.CharField(help_text='Get this from https://trello.com/1/authorize?key=YOUR_API_KEY&name=Your+App+Name&expiration=never&response_type=token&scope=read,write', max_length=100)), ], options={ 'verbose_name': 'Trello Token',