generate all SQL reports

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-12-28 17:10:31 +01:00
parent 1abf23efe2
commit 21985baa7f
12 changed files with 474 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
## SQL Report file for "@backstage/plugin-auth-backend"
> Do not edit this file. It is a report generated by `yarn build:api-reports`
> [!WARNING]
> Failed to migrate down from '20220321100910_timestamptz_again.js'
## Table `sessions`
| Column | Type | Nullable | Max Length | Default |
| --------- | -------------------------- | -------- | ---------- | ------- |
| `expired` | `timestamp with time zone` | false | - | - |
| `sess` | `text` | false | - | - |
| `sid` | `character varying` | false | 255 | - |
### Indices
- `sessions_expired_idx` (`expired`)
- `sessions_pkey` (`sid`) unique primary
- `sessions_sid_idx` (`sid`)
## Table `signing_keys`
| Column | Type | Nullable | Max Length | Default |
| ------------ | -------------------------- | -------- | ---------- | ------------------- |
| `created_at` | `timestamp with time zone` | false | - | `CURRENT_TIMESTAMP` |
| `key` | `text` | false | - | - |
| `kid` | `character varying` | false | 255 | - |
### Indices
- `signing_keys_pkey` (`kid`) unique primary
## Table `user_info`
| Column | Type | Nullable | Max Length | Default |
| ----------------- | -------------------------- | -------- | ---------- | ------- |
| `exp` | `timestamp with time zone` | false | - | - |
| `user_entity_ref` | `character varying` | false | 255 | - |
| `user_info` | `text` | false | - | - |
### Indices
- `user_info_pkey` (`user_entity_ref`) unique primary