mirror of
https://github.com/Dadechin/Dashboard-XRoom.git
synced 2025-07-03 00:34:34 +00:00
25 lines
747 B
Python
25 lines
747 B
Python
# Generated by Django 5.0 on 2025-05-24 12:12
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0004_remove_subscription_adminuser'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='AssetBundleRoom',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('url', models.TextField()),
|
|
('name', models.CharField(max_length=255)),
|
|
('description', models.TextField(blank=True)),
|
|
('maxPerson', models.PositiveIntegerField()),
|
|
('img', models.TextField()),
|
|
],
|
|
),
|
|
]
|