| 1 | using AgentForge.Abstractions; |
| 2 | |
| 3 | namespace AgentForge.Plugin.Issue; |
| 4 | |
| 5 | internal static class ForgeIssueSchemaBootstrap |
| 6 | { |
| 7 | internal static void Apply(IForgeMigrationContext context) |
| 8 | { |
| 9 | context.TryAddColumn("issues", "CreatedBy", "TEXT NOT NULL DEFAULT ''"); |
| 10 | context.ApplyPendingMigrations(); |
| 11 | } |
| 12 | } |
| 13 |