Merge pull request #27 from christianlouis/copilot/fix-script-location-error

fix: initialize Alembic migrations to resolve container startup failure
This commit is contained in:
Christian Krakau-Louis
2026-03-29 13:44:27 +02:00
committed by GitHub
7 changed files with 421 additions and 2 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ class Domain(Base):
active = Column(Boolean, default=True, index=True)
# DMARC policy information
dmarc_policy = Column(String, nullable=True, index=True)
dmarc_policy = Column(String, nullable=True)
spf_record = Column(String, nullable=True)
dkim_selectors = Column(String, nullable=True) # Comma-separated list of DKIM selectors
+1 -1
View File
@@ -29,7 +29,7 @@ class DMARCReport(Base):
percentage = Column(Integer, nullable=True)
# Processing metadata
processed_at = Column(DateTime, default=datetime.utcnow, index=True)
processed_at = Column(DateTime, default=datetime.utcnow)
raw_data = Column(Text, nullable=True) # Original XML content (optional)
# Relationships