├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── CLAUDE.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── docs ├── CHANGELOG-2.0.0.md └── plans │ ├── 2025-11-02-database-introspection-views-design.md │ └── 2025-11-02-introspection-views.md ├── install-tle.sql.template ├── latest-changes.md ├── metagration.png ├── metagration.svg ├── sql └── metagration.sql ├── test.sh └── test ├── core.sql ├── introspection.sql ├── security.sql ├── test.sql └── verify.sql /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/README.md -------------------------------------------------------------------------------- /docs/CHANGELOG-2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/docs/CHANGELOG-2.0.0.md -------------------------------------------------------------------------------- /docs/plans/2025-11-02-database-introspection-views-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/docs/plans/2025-11-02-database-introspection-views-design.md -------------------------------------------------------------------------------- /docs/plans/2025-11-02-introspection-views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/docs/plans/2025-11-02-introspection-views.md -------------------------------------------------------------------------------- /install-tle.sql.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/install-tle.sql.template -------------------------------------------------------------------------------- /latest-changes.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /metagration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/metagration.png -------------------------------------------------------------------------------- /metagration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/metagration.svg -------------------------------------------------------------------------------- /sql/metagration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/sql/metagration.sql -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/test.sh -------------------------------------------------------------------------------- /test/core.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/test/core.sql -------------------------------------------------------------------------------- /test/introspection.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/test/introspection.sql -------------------------------------------------------------------------------- /test/security.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/test/security.sql -------------------------------------------------------------------------------- /test/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/test/test.sql -------------------------------------------------------------------------------- /test/verify.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelp/metagration/HEAD/test/verify.sql --------------------------------------------------------------------------------