parent
862b3218e5
commit
6a31732d1b
2 changed files with 15 additions and 1 deletions
15
shell/zsh
15
shell/zsh
|
@ -7,7 +7,15 @@ function __tas_show() {
|
|||
}
|
||||
|
||||
function __tas_start() {
|
||||
tas start $(__tas_task_idx "$@")
|
||||
if [[ "$1" != "" ]]; then
|
||||
tas start $(__tas_task_idx "$@")
|
||||
fi
|
||||
}
|
||||
|
||||
function __tas_remove() {
|
||||
if [[ "$1" != "" ]]; then
|
||||
tas remove $(__tas_task_idx "$@")
|
||||
fi
|
||||
}
|
||||
|
||||
function __tas_list() {
|
||||
|
@ -28,6 +36,11 @@ function taz() {
|
|||
|
||||
"start" | "st")
|
||||
__tas_start "$(__tas_list)"
|
||||
;;
|
||||
|
||||
"remove" | "rm")
|
||||
__tas_remove "$(__tas_list)"
|
||||
;;
|
||||
|
||||
esac
|
||||
}
|
||||
|
|
|
@ -297,6 +297,7 @@ impl SqliteRepo {
|
|||
return Ok(());
|
||||
}
|
||||
|
||||
// TODO: execute full schema if version is none
|
||||
if version.is_none() {
|
||||
run_migration!(self, version = 202208162308);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue