# Generated by Django 5.2.7 on 2025-10-29 00:19 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ("submissions", "0002_delete_collection"), ] operations = [ migrations.CreateModel( name="SteamAPIKey", fields=[ ( "id", models.BigAutoField( auto_created=True, primary_key=True, serialize=False, verbose_name="ID", ), ), ( "name", models.CharField( help_text="Descriptive name for this API key (e.g., 'Production Key', 'Development Key')", max_length=100, unique=True, ), ), ( "api_key", models.CharField( help_text="Steam Web API key from https://steamcommunity.com/dev/apikey", max_length=64, ), ), ( "is_active", models.BooleanField( default=True, help_text="Whether this API key should be used" ), ), ( "description", models.TextField( blank=True, help_text="Optional description or notes about this API key", ), ), ("created_at", models.DateTimeField(auto_now_add=True)), ("updated_at", models.DateTimeField(auto_now=True)), ( "last_used", models.DateTimeField( blank=True, help_text="When this API key was last used", null=True, ), ), ], options={ "verbose_name": "Steam API Key", "verbose_name_plural": "Steam API Keys", "ordering": ["-is_active", "name"], }, ), ]