statementsRequiredToActualizeScheme
suspend fun statementsRequiredToActualizeScheme(vararg tables: Table, withLogs: Boolean = true): List<String>
Deprecated
This function will be removed in future releases.
Replace with
MigrationUtils.statementsRequiredForDatabaseMigration
Content copied to clipboard
Returns the SQL statements that need to be executed to make the existing database schema compatible with the table objects defined using Exposed.
Note: Some databases, like SQLite, only support ALTER TABLE ADD COLUMN
syntax in very restricted cases, which may cause unexpected behavior when adding some missing columns. For more information, refer to the relevant documentation. For SQLite, see ALTER TABLE restrictions.
By default, a description for each intermediate step, as well as its execution time, is logged at the INFO level. This can be disabled by setting withLogs to false
.