github.com/wawandco/oxplugins@v0.7.11/tools/pop/migration/creator/creator.go (about) 1 package creator 2 3 // Creator follows a set of steps to make possible the creation 4 // of different migration types for example: 5 // -- fizz 6 // -- sql 7 // -- liquibase 8 type Creator interface { 9 Name() string 10 Create(string, []string) error 11 }