Skip to content

Commit 742ad09

Browse files
committed
Changed the floorplan short string from 2 to 3 characters, in order to support things like London Hilton Metropole's level -3E, 3rd lower ground floor East.
- Legacy-Id: 14685
1 parent 5192440 commit 742ad09

2 files changed

Lines changed: 21 additions & 1 deletion

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.10.8 on 2018-02-22 14:21
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations, models
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('meeting', '0059_meeting_show_important_dates'),
12+
]
13+
14+
operations = [
15+
migrations.AlterField(
16+
model_name='floorplan',
17+
name='short',
18+
field=models.CharField(default=b'', max_length=3),
19+
),
20+
]

ietf/meeting/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ def floorplan_path(instance, filename):
390390

391391
class FloorPlan(models.Model):
392392
name = models.CharField(max_length=255)
393-
short = models.CharField(max_length=2, default='')
393+
short = models.CharField(max_length=3, default='')
394394
time = models.DateTimeField(default=datetime.datetime.now)
395395
meeting = models.ForeignKey(Meeting)
396396
order = models.SmallIntegerField()

0 commit comments

Comments
 (0)