Seeding updated

This commit is contained in:
gamer147
2026-05-23 16:25:49 -04:00
parent 5f44ee0c7e
commit 56d3cf0ec8
38 changed files with 52689 additions and 62 deletions

View File

@@ -0,0 +1,16 @@
using System.ComponentModel.DataAnnotations.Schema;
using SVSim.Database.Common;
namespace SVSim.Database.Models;
/// <summary>
/// Per-feature maintenance toggle from /load/index data.feature_maintenance_list. Empty in current
/// prod capture; recapture target if a feature ever gets disabled before EOS.
/// </summary>
public class FeatureMaintenanceEntry : BaseEntity<int>
{
public string FeatureKey { get; set; } = string.Empty;
[Column(TypeName = "jsonb")]
public string Data { get; set; } = "{}";
}