23 lines
579 B
Python
23 lines
579 B
Python
# Generated by Django 5.0.3 on 2024-09-26 14:48
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='GithubRun',
|
|
fields=[
|
|
('id', models.IntegerField(primary_key=True, serialize=False, verbose_name='ID')),
|
|
('uuid', models.CharField(max_length=100, verbose_name='uuid')),
|
|
('status', models.CharField(max_length=100, verbose_name='status')),
|
|
],
|
|
),
|
|
]
|