column names are now getting full display name optionality

This commit is contained in:
Priec
2026-09-02 10:48:33 +02:00
parent 677c64c877
commit 56a1e855f5
6 changed files with 15 additions and 17 deletions

View File

@@ -9,7 +9,7 @@ rustflags = ["-C", "link-arg=-fuse-ld=lld"]
# `cargo run` process holding up another Cargo invocation.
[alias]
watch-client = ["watch", "--delay", "0.1", "--ignore", "**/common/src/proto/**", "--exec", "build --package client", "--shell", "workspace_manifest=$(cargo locate-project --workspace --message-format plain); exec ${workspace_manifest%Cargo.toml}target/debug/client client"]
watch-server = ["watch", "--why", "--delay", "0.1", "--ignore", "**/common/src/proto/**", "--ignore", "**/.postgres-data/**", "--exec", "build --package server", "--shell", "workspace_manifest=$(cargo locate-project --workspace --message-format plain); exec ${workspace_manifest%Cargo.toml}target/debug/server server"]
watch-server = ["watch", "--why", "--delay", "0.1", "--ignore", "**/common/src/proto/**", "--ignore", "**/.postgres-data/**", "--exec", "build --package server --features full", "--shell", "workspace_manifest=$(cargo locate-project --workspace --message-format plain); exec ${workspace_manifest%Cargo.toml}target/debug/server server"]
[env]
POSTGRESQL_VERSION = "=17.10.0"