Skip to content
View KnifeMaster007's full-sized avatar
Block or Report

Block or report KnifeMaster007

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. pgAuthProxy pgAuthProxy Public

    Postgres authentication proxy written in Go

    Go 11 3

  2. git-version git-version Public

    Gradle git details extension

    Kotlin 2 1

  3. Query to generate full DDL (includin... Query to generate full DDL (including comments) for all foreign keys in PostgreSQL. Can be used in flyway migrations
    1
    with fks as (
    2
        select conname as fk_name,
    3
               source_rel.relnamespace::regnamespace::text as table_schema,
    4
               conrelid::regclass::text as table_name,
    5
               (