{ "id": "8146d795-d1a9-49be-857d-4320898b38fb", "prevId": "00000000-0000-0000-0000-000000000000", "version": "5", "dialect": "pg", "tables": { "users": { "name": "users", "schema": "", "columns": { "id": { "name": "id", "type": "serial", "primaryKey": true, "notNull": true }, "updated_at": { "name": "updated_at", "type": "timestamp(3) with time zone", "primaryKey": false, "notNull": true, "default": "now()" }, "created_at": { "name": "created_at", "type": "timestamp(3) with time zone", "primaryKey": false, "notNull": true, "default": "now()" }, "email": { "name": "email", "type": "varchar", "primaryKey": false, "notNull": true }, "reset_password_token": { "name": "reset_password_token", "type": "varchar", "primaryKey": false, "notNull": false }, "reset_password_expiration": { "name": "reset_password_expiration", "type": "timestamp(3) with time zone", "primaryKey": false, "notNull": false }, "salt": { "name": "salt", "type": "varchar", "primaryKey": false, "notNull": false }, "hash": { "name": "hash", "type": "varchar", "primaryKey": false, "notNull": false }, "login_attempts": { "name": "login_attempts", "type": "numeric", "primaryKey": false, "notNull": false }, "lock_until": { "name": "lock_until", "type": "timestamp(3) with time zone", "primaryKey": false, "notNull": false } }, "indexes": { "users_created_at_idx": { "name": "users_created_at_idx", "columns": ["created_at"], "isUnique": false }, "users_email_idx": { "name": "users_email_idx", "columns": ["email"], "isUnique": true } }, "foreignKeys": {}, "compositePrimaryKeys": {}, "uniqueConstraints": {} }, "media": { "name": "media", "schema": "", "columns": { "id": { "name": "id", "type": "serial", "primaryKey": true, "notNull": true }, "alt": { "name": "alt", "type": "varchar", "primaryKey": false, "notNull": true }, "updated_at": { "name": "updated_at", "type": "timestamp(3) with time zone", "primaryKey": false, "notNull": true, "default": "now()" }, "created_at": { "name": "created_at", "type": "timestamp(3) with time zone", "primaryKey": false, "notNull": true, "default": "now()" }, "url": { "name": "url", "type": "varchar", "primaryKey": false, "notNull": false }, "thumbnail_u_r_l": { "name": "thumbnail_u_r_l", "type": "varchar", "primaryKey": false, "notNull": false }, "filename": { "name": "filename", "type": "varchar", "primaryKey": false, "notNull": false }, "mime_type": { "name": "mime_type", "type": "varchar", "primaryKey": false, "notNull": false }, "filesize": { "name": "filesize", "type": "numeric", "primaryKey": false, "notNull": false }, "width": { "name": "width", "type": "numeric", "primaryKey": false, "notNull": false }, "height": { "name": "height", "type": "numeric", "primaryKey": false, "notNull": false }, "focal_x": { "name": "focal_x", "type": "numeric", "primaryKey": false, "notNull": false }, "focal_y": { "name": "focal_y", "type": "numeric", "primaryKey": false, "notNull": false } }, "indexes": { "media_created_at_idx": { "name": "media_created_at_idx", "columns": ["created_at"], "isUnique": false }, "media_filename_idx": { "name": "media_filename_idx", "columns": ["filename"], "isUnique": true } }, "foreignKeys": {}, "compositePrimaryKeys": {}, "uniqueConstraints": {} }, "payload_preferences": { "name": "payload_preferences", "schema": "", "columns": { "id": { "name": "id", "type": "serial", "primaryKey": true, "notNull": true }, "key": { "name": "key", "type": "varchar", "primaryKey": false, "notNull": false }, "value": { "name": "value", "type": "jsonb", "primaryKey": false, "notNull": false }, "updated_at": { "name": "updated_at", "type": "timestamp(3) with time zone", "primaryKey": false, "notNull": true, "default": "now()" }, "created_at": { "name": "created_at", "type": "timestamp(3) with time zone", "primaryKey": false, "notNull": true, "default": "now()" } }, "indexes": { "payload_preferences_key_idx": { "name": "payload_preferences_key_idx", "columns": ["key"], "isUnique": false }, "payload_preferences_created_at_idx": { "name": "payload_preferences_created_at_idx", "columns": ["created_at"], "isUnique": false } }, "foreignKeys": {}, "compositePrimaryKeys": {}, "uniqueConstraints": {} }, "payload_preferences_rels": { "name": "payload_preferences_rels", "schema": "", "columns": { "id": { "name": "id", "type": "serial", "primaryKey": true, "notNull": true }, "order": { "name": "order", "type": "integer", "primaryKey": false, "notNull": false }, "parent_id": { "name": "parent_id", "type": "integer", "primaryKey": false, "notNull": true }, "path": { "name": "path", "type": "varchar", "primaryKey": false, "notNull": true }, "users_id": { "name": "users_id", "type": "integer", "primaryKey": false, "notNull": false } }, "indexes": { "payload_preferences_rels_order_idx": { "name": "payload_preferences_rels_order_idx", "columns": ["order"], "isUnique": false }, "payload_preferences_rels_parent_idx": { "name": "payload_preferences_rels_parent_idx", "columns": ["parent_id"], "isUnique": false }, "payload_preferences_rels_path_idx": { "name": "payload_preferences_rels_path_idx", "columns": ["path"], "isUnique": false } }, "foreignKeys": { "payload_preferences_rels_parent_fk": { "name": "payload_preferences_rels_parent_fk", "tableFrom": "payload_preferences_rels", "tableTo": "payload_preferences", "columnsFrom": ["parent_id"], "columnsTo": ["id"], "onDelete": "cascade", "onUpdate": "no action" }, "payload_preferences_rels_users_fk": { "name": "payload_preferences_rels_users_fk", "tableFrom": "payload_preferences_rels", "tableTo": "users", "columnsFrom": ["users_id"], "columnsTo": ["id"], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {} }, "payload_migrations": { "name": "payload_migrations", "schema": "", "columns": { "id": { "name": "id", "type": "serial", "primaryKey": true, "notNull": true }, "name": { "name": "name", "type": "varchar", "primaryKey": false, "notNull": false }, "batch": { "name": "batch", "type": "numeric", "primaryKey": false, "notNull": false }, "updated_at": { "name": "updated_at", "type": "timestamp(3) with time zone", "primaryKey": false, "notNull": true, "default": "now()" }, "created_at": { "name": "created_at", "type": "timestamp(3) with time zone", "primaryKey": false, "notNull": true, "default": "now()" } }, "indexes": { "payload_migrations_created_at_idx": { "name": "payload_migrations_created_at_idx", "columns": ["created_at"], "isUnique": false } }, "foreignKeys": {}, "compositePrimaryKeys": {}, "uniqueConstraints": {} } }, "enums": {}, "schemas": {}, "_meta": { "schemas": {}, "tables": {}, "columns": {} } }