bornhack-website/src/sponsors/migrations/0005_sponsor_url.py

21 lines
504 B
Python
Raw Normal View History

2017-07-15 09:00:59 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-07-14 21:56
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("sponsors", "0004_sponsortier_weight")]
2017-07-15 09:00:59 +00:00
operations = [
migrations.AddField(
2019-06-16 12:32:24 +00:00
model_name="sponsor",
name="url",
field=models.URLField(
blank=True, help_text="A URL to the sponsor.", null=True
),
)
2017-07-15 09:00:59 +00:00
]