Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/migrations/0012_auto_20150204_1629.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name='account',
name='transfer_code',
field=models.CharField(help_text=b"It's important to always have an active transfer code, since it will allow you to retrieve your account in case you loose your device. We can store it for you here: only you will be able to see it. To generate it, go to the settings and use the first button below the one to change your name in the first tab.", max_length=30, blank=True),
field=models.CharField(help_text=b"It's important to always have an active transfer code, since it will allow you to retrieve your account in case you lose your device. We can store it for you here: only you will be able to see it. To generate it, go to the settings and use the first button below the one to change your name in the first tab.", max_length=30, blank=True),
preserve_default=True,
),
migrations.AlterField(
Expand Down
2 changes: 1 addition & 1 deletion api/migrations/0019_auto_20150216_0813.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name='account',
name='transfer_code',
field=models.CharField(help_text="It's important to always have an active transfer code, since it will allow you to retrieve your account in case you loose your device. We can store it for you here: only you will be able to see it. To generate it, go to the settings and use the first button below the one to change your name in the first tab.", max_length=30, verbose_name='Transfer Code', blank=True),
field=models.CharField(help_text="It's important to always have an active transfer code, since it will allow you to retrieve your account in case you lose your device. We can store it for you here: only you will be able to see it. To generate it, go to the settings and use the first button below the one to change your name in the first tab.", max_length=30, verbose_name='Transfer Code', blank=True),
preserve_default=True,
),
migrations.AlterField(
Expand Down
2 changes: 1 addition & 1 deletion api/migrations/0065_auto_20150903_1853.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name='account',
name='transfer_code',
field=models.CharField(help_text="It's important to always have an active transfer code, since it will allow you to retrieve your account in case you loose your device. We can store it for you here: only you will be able to see it. To generate it, go to the settings and use the first button below the one to change your name in the first tab.", max_length=100, verbose_name='Transfer Code', blank=True),
field=models.CharField(help_text="It's important to always have an active transfer code, since it will allow you to retrieve your account in case you lose your device. We can store it for you here: only you will be able to see it. To generate it, go to the settings and use the first button below the one to change your name in the first tab.", max_length=100, verbose_name='Transfer Code', blank=True),
preserve_default=True,
),
migrations.AlterField(
Expand Down
2 changes: 1 addition & 1 deletion api/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ class Account(ExportModelOperationsMixin('Account'), models.Model):
friend_id = models.PositiveIntegerField(_("Friend ID"), blank=True, null=True, help_text=_('You can find your friend id by going to the "Friends" section from the home, then "ID Search". Players will be able to send you friend requests or messages using this number.'))
show_friend_id = models.BooleanField('', default=True, help_text=_('Should your friend ID be visible to other players?'))
accept_friend_requests = models.NullBooleanField(_('Accept friend requests'), blank=True, null=True)
transfer_code = models.CharField(_("Transfer Code"), blank=True, max_length=100, help_text=_('It\'s important to always have an active transfer code, since it will allow you to retrieve your account in case you loose your device. We can store it for you here: only you will be able to see it. To generate it, go to the settings and use the first button below the one to change your name in the first tab.'))
transfer_code = models.CharField(_("Transfer Code"), blank=True, max_length=100, help_text=_('It\'s important to always have an active transfer code, since it will allow you to retrieve your account in case you lose your device. We can store it for you here: only you will be able to see it. To generate it, go to the settings and use the first button below the one to change your name in the first tab.'))
device = models.CharField(_('Device'), help_text=_('The modele of your device. Example: Nexus 5, iPhone 4, iPad 2, ...'), max_length=150, null=True, blank=True)
play_with = models.CharField(_('Play with'), blank=True, null=True, max_length=30, choices=PLAYWITH_CHOICES)
language = models.CharField(_("Language"), choices=LANGUAGE_CHOICES, default='JP', max_length=10, help_text=_('This is the version of the game you play.'))
Expand Down
2 changes: 1 addition & 1 deletion api/raw.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@
'sub_unit': 'CYaRon!',
'cv_nickname': 'Aiai',
'cv_twitter': 'furihata_ai',
'cv_instagram': 'furihata_ai',
'cv_instagram': 'furihatagram',
'starter': 794,
'color': '#f273c4',
'chibi': [
Expand Down