| 3 | namespace Aptabase.Data.Migrations; |
| 4 | |
| 5 | [Migration(0008)] |
| 6 | public class AddLockReason : Migration |
| 7 | { |
| 8 | public override void Up() |
| 9 | { |
| 10 | Alter.Table("users") |
| 11 | .AddColumn("lock_reason").AsFixedLengthString(1).Nullable(); |
| 12 | } |
| 13 | |
| 14 | public override void Down() |
| 15 | { |
| 16 | Delete.Column("lock_reason").FromTable("users"); |
| 17 | } |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected