| 11 | ) |
| 12 | |
| 13 | type MigrationVersion03 struct { |
| 14 | isValid bool |
| 15 | tables []string |
| 16 | } |
| 17 | |
| 18 | func NewMigrationVersion03() *MigrationVersion03 { |
| 19 | return &MigrationVersion03{isValid: false, tables: make([]string, 0)} |
nothing calls this directly
no outgoing calls
no test coverage detected