Files
website-v2/versions/migrations/0007_version_data_version_github_url.py
Lacey Williams Henschel eb0a6884b6 168 import versions (#295)
* WIP get old versions

* 🏦 Add URL and data dict to Version model

* 🔧 Some refactoring how we get tag data

* First pass at uploading versions

* 🔧 Move parsing logic to the parser and add tests

* Retrieve url and save json data

* Improve version upload docs

* Linter
2023-05-11 05:59:49 -07:00

29 lines
696 B
Python

# Generated by Django 4.2 on 2023-05-10 21:41
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("versions", "0006_version_slug"),
]
operations = [
migrations.AddField(
model_name="version",
name="data",
field=models.JSONField(default=dict),
),
migrations.AddField(
model_name="version",
name="github_url",
field=models.URLField(
blank=True,
help_text="The URL of the Boost version's GitHub repository.",
max_length=500,
null=True,
),
),
]