package com.datacomsolusindo.migration import org.springframework.boot.context.properties.ConfigurationProperties import org.springframework.stereotype.Service @Service @ConfigurationProperties(prefix = "migration") class MigrationSettingService { var type: String = "FILE" var sourceDatabase: MutableMap = mutableMapOf() var target: Array? = arrayOf() var schema: Array = arrayOf() } class MigrationSchema( val target: String, val table: String, val history: String? = null, val group: String? = null, val attribute: MutableMap )