fmartingr
/
jeeves
Archived
1
0
Fork 0
This repository has been archived on 2021-02-14. You can view files and clone it, but cannot push or open issues or pull requests.
jeeves/jeeves/db/migrations/0004_auto_20190926_1613.py

22 lines
525 B
Python

# Generated by Django 2.2.5 on 2019-09-26 16:13
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [("db", "0003_auto_20190925_2123")]
operations = [
migrations.AddField(
model_name="run",
name="stderr",
field=models.TextField(blank=True, null=True),
),
migrations.AddField(
model_name="run",
name="stdout",
field=models.TextField(blank=True, null=True),
),
]