1.0.6 • Published 5 years ago

@kblue/pg-tools v1.0.6

Weekly downloads
-
License
ISC
Repository
gitlab
Last release
5 years ago

Restful Database Tools for PostgreSQL

Features

  • schema management
    • load-schema
      • resource template
        • tables
        • functions
      • sql files
    • load-data
  • json validation

Sub-Commands

# load schema from file
pg-tools schema --schema schema.yaml

# load schema and commit the changes
pg-tools schema --schema schema.yaml --no-tables
# load schema from file
pg-tools db --connection connection.yaml --force 

Create Tables For Resources

TypeDescription
function-resourceaccess data via functions

Function Resources

Access the data via functions.

Entity

create table si.account (
    uuid                uuid primary key default uuid_generate_v4(),
    head                jsonb not null,
    body                jsonb not null,
    tags                text[] not null default '{}'::text[]
);

Example

head:
    id: chris-default-account
    uuid: 
    type: account
    tags:
        - default
body:

Dictionaries

Currencies

https://www.currency-iso.org/dam/downloads/lists/list_one.xml

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago