Source code for autowisp.browser_interface.home.migrations.0001_initial

# Generated by Django 5.1.7 on 2025-08-20 13:30

from django.db import migrations, models


[docs] class Migration(migrations.Migration): initial = True dependencies = [] operations = [ migrations.CreateModel( name="Project", fields=[ ( "id", models.BigAutoField( auto_created=True, primary_key=True, serialize=False, verbose_name="ID", ), ), ( "name", models.CharField( help_text="Enter the project name", max_length=100 ), ), ( "description", models.TextField( blank=True, help_text="Enter a brief description of the project", ), ), ( "path", models.TextField(help_text="The project root directory"), ), ( "created", models.DateTimeField( auto_now_add=True, help_text="The date and time the project was created", ), ), ], ), ]