glimr_postgres/console/kernel
glimr_postgres Console Kernel
Provides PostgreSQL-specific console commands for migrations and code generation. Add these commands to your application’s command provider.
Usage
import glimr_postgres/console/kernel as postgres_kernel
pub fn register() -> List(Command) {
list.flatten([
kernel.commands(),
postgres_kernel.commands(),
])
}
Values
pub fn commands() -> List(command.Command)
Returns the list of PostgreSQL console commands. Users add these to their command_provider to enable postgres specific CLI operations.