├── .github ├── CODEOWNERS ├── FUNDING.yml └── pull_request_template.md ├── LICENSE ├── README.md ├── Roadmap └── README.md ├── pgFirstAid.sql └── view_pgFirstAid.sql /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @randoneering 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randoneering/pgFirstAid/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randoneering/pgFirstAid/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randoneering/pgFirstAid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randoneering/pgFirstAid/HEAD/README.md -------------------------------------------------------------------------------- /Roadmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randoneering/pgFirstAid/HEAD/Roadmap/README.md -------------------------------------------------------------------------------- /pgFirstAid.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randoneering/pgFirstAid/HEAD/pgFirstAid.sql -------------------------------------------------------------------------------- /view_pgFirstAid.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randoneering/pgFirstAid/HEAD/view_pgFirstAid.sql --------------------------------------------------------------------------------