diff --git a/modules/core/src/main/kotlin/datamaintain/core/db/driver/DatamaintainDriver.kt b/modules/core/src/main/kotlin/datamaintain/core/db/driver/DatamaintainDriver.kt index 1fbee8d9..5d32187a 100644 --- a/modules/core/src/main/kotlin/datamaintain/core/db/driver/DatamaintainDriver.kt +++ b/modules/core/src/main/kotlin/datamaintain/core/db/driver/DatamaintainDriver.kt @@ -13,17 +13,17 @@ abstract class DatamaintainDriver(protected val uri: String) { abstract fun listExecutedScripts(): Sequence /** - * Executes the given script and inserts its execution in the database + * Executes the given script */ abstract fun executeScript(script: ScriptWithContent): Execution /** - * Does not execute the given script, only inserts its execution in the database + * Inserts script execution in the database */ abstract fun markAsExecuted(executedScript: ExecutedScript): ExecutedScript /** - * Does not execute the given script, only update its execution in the database + * Update script execution in the database */ abstract fun overrideScript(executedScript: ExecutedScript): ExecutedScript }