File indexing completed on 2026-04-27 07:41:42
0001
0002
0003 from django.db import migrations, models
0004
0005
0006 class Migration(migrations.Migration):
0007
0008 dependencies = [
0009 ('monitor_app', '0029_add_metadata_to_systemagent'),
0010 ]
0011
0012 operations = [
0013 migrations.CreateModel(
0014 name='Namespace',
0015 fields=[
0016 ('name', models.CharField(max_length=100, primary_key=True, serialize=False)),
0017 ('owner', models.CharField(help_text='Username of namespace owner', max_length=100)),
0018 ('description', models.TextField(blank=True)),
0019 ('metadata', models.JSONField(blank=True, null=True)),
0020 ('created_at', models.DateTimeField(auto_now_add=True)),
0021 ('updated_at', models.DateTimeField(auto_now=True)),
0022 ],
0023 options={
0024 'db_table': 'swf_namespace',
0025 'ordering': ['name'],
0026 },
0027 ),
0028 ]