@sqlpm/sqlpm-example-postgresql
v1.2.1
Published
Used to test the sqlpm along with .
Downloads
2
Maintainers
Readme
sqlpm-example-postgresql
Used to test the sqlpm along with .
Usage
Generated
This package was generated @sqlpm/package-generator-ts as follows:
import {
DatabaseSystem,
DatabaseAccessMode,
} from '@sqlpm/types-ts';
import {
schemaProjectInit,
} from '@sqlpm/package-generator-ts';
(async () => {
await schemaProjectInit(
'sqlpm-example',
DatabaseSystem.Postgresql,
'Used to test the sqlpm along with .',
'Eric Hosick',
'[email protected]',
[DatabaseAccessMode.ReadWrite, DatabaseAccessMode.ReadOnly],
);
})();