Files
WerkoutAPI/equipment/migrations/0001_initial.py
Trey t a2fd663255 init commit
init commit
2023-06-11 20:09:22 -05:00

26 lines
809 B
Python

# Generated by Django 4.2.2 on 2023-06-11 22:00
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Equipment',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('created_at', models.DateTimeField(auto_now_add=True)),
('updated_at', models.DateTimeField(auto_now=True)),
('is_weight', models.BooleanField(default=False)),
('category', models.CharField(blank=True, max_length=64, null=True)),
('name', models.CharField(blank=True, max_length=64, null=True)),
],
),
]