mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 05:25:40 +00:00
24 lines
597 B
Python
24 lines
597 B
Python
# Generated by Django 5.1.4 on 2024-12-10 00:52
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Mesa',
|
|
fields=[
|
|
('id', models.AutoField(primary_key=True, serialize=False)),
|
|
('name', models.CharField(max_length=100)),
|
|
('location', models.CharField(blank=True, max_length=255, null=True)),
|
|
('active', models.BooleanField(default=False)),
|
|
],
|
|
),
|
|
]
|