William Reed
08/24/2022, 3:45 PMsqldelight {
database("MyDb") {
packageName = "com.foo.bar"
dialect = "mysql"
sourceFolders = listOf("sqldelight")
migrationOutputDirectory = file("$buildDir/resources/main/migrations")
migrationOutputFileFormat = ".sql"
}
}
the generateMainDatabaseMigrations task is not being created. is there something else I’m missing? I have my initial CREATE TABLE statement & queries in src/main/sqldelight/com/foo/bar/… and I have my .sqm file in src/main/sqldelight/…hfhbd
08/28/2022, 7:56 PMWilliam Reed
09/08/2022, 5:56 PM