@adaptware/eagles-db 0.4.18 → 0.4.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -4
- package/client/edge.js +6 -5
- package/client/index-browser.js +1 -0
- package/client/index.d.ts +1 -0
- package/client/index.js +6 -5
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +1 -0
- package/client/wasm.js +1 -0
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/schema/.DS_Store +0 -0
- package/prisma/schema/applications.prisma +34 -33
- package/prisma/schema/migrations/20260519120000_add_analytics_schema/migration.sql +84 -0
- package/prisma/schema/migrations/20260519120000_interview_deadline/migration.sql +0 -2
- package/prisma/schema/migrations/20260520120000_interview_duration_drop_deadline/migration.sql +0 -30
- package/prisma/schema/migrations/20260602120000_resume_file_hash_drop_unique/migration.sql +0 -2
- package/prisma/schema/migrations/20260603120000_job_application_field_is_mandatory/migration.sql +0 -2
- package/prisma/schema/migrations/20260604120000_job_application_response_updated_by_organisation/migration.sql +0 -2
- package/prisma/schema/migrations/20260605120000_drop_document_application_id/migration.sql +0 -3
- package/prisma/schema/migrations/20260610120000_jaf_template_model/migration.sql +0 -70
- package/prisma/schema/migrations/20260610130000_assignment_document_fks/migration.sql +0 -15
- package/prisma/schema/migrations/20260610140000_jaf_draft_activation/migration.sql +0 -12
package/README.md
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
|
-
# eagles-db
|
|
1
|
+
# @adaptware/eagles-db
|
|
2
2
|
|
|
3
|
-
Prisma schema
|
|
3
|
+
Prisma schema and client for the Treadspace hiring database.
|
|
4
4
|
|
|
5
|
-
**
|
|
5
|
+
**Package name:** `@adaptware/eagles-db`
|
|
6
|
+
**CLI binary:** `treadspace-db` (see [docs/eagles-db/cli-reference.md](./docs/eagles-db/cli-reference.md))
|
|
7
|
+
|
|
8
|
+
**Local documentation:** [docs/README.md](./docs/README.md)
|
|
9
|
+
**Central monorepo hub:** [docs/README.md](../docs/README.md)
|
|
6
10
|
|
|
7
11
|
```bash
|
|
12
|
+
yarn install
|
|
13
|
+
export DATABASE_URL=postgresql://...
|
|
8
14
|
yarn generate
|
|
9
|
-
yarn db:migrate
|
|
10
15
|
```
|