Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-27 07:41:42

0001 # Generated by Django 4.2.23 on 2025-06-11 12:37
0002 
0003 from django.db import migrations, models
0004 
0005 
0006 class Migration(migrations.Migration):
0007 
0008     initial = True
0009 
0010     dependencies = []
0011 
0012     operations = [
0013         migrations.CreateModel(
0014             name="MonitoredItem",
0015             fields=[
0016                 (
0017                     "id",
0018                     models.BigAutoField(
0019                         auto_created=True,
0020                         primary_key=True,
0021                         serialize=False,
0022                         verbose_name="ID",
0023                     ),
0024                 ),
0025                 ("name", models.CharField(max_length=100)),
0026                 ("description", models.TextField(blank=True)),
0027                 ("created_at", models.DateTimeField(auto_now_add=True)),
0028                 ("updated_at", models.DateTimeField(auto_now=True)),
0029             ],
0030         ),
0031     ]