Files @ 4847f13de047
Branch filter:

Location: symposion_app/fixtures/conference.json

Jamie Lennox
Use Linux Australia for release and not pycon

Update the recording and materials release to say Linux Australia, not
Pycon Australia. This generates a migration because the model text has
change - but also because in the 0001_initial migration it appears that
this help text is stored as a byte string.

This is a bit weird, but realistically running this migration is not
going to cause us any problems so just add it so we don't end up
fighting django along the way.
[
    {
        "pk": 1,
        "model": "symposion_conference.conference",
        "fields": {
            "timezone": "Australia/Sydney",
            "start_date": "2018-01-21",
            "end_date": "2018-01-26",
            "title": "linux.conf.au 2018"
        }
    },
    {
        "pk": 1,
        "model": "symposion_conference.section",
        "fields": {
            "conference": 1,
            "start_date": "2018-01-24",
            "name": "Main Conference",
            "end_date": "2018-01-26",
            "slug": "main"
        }
    },
    {
        "pk": 2,
        "model": "symposion_conference.section",
        "fields": {
            "conference": 1,
            "start_date": "2018-01-22",
            "name": "MiniConf",
            "end_date": "2018-01-23",
            "slug": "miniconf"
        }
    }
]