lix 0.12.3

Embeddable version control for apps and AI agents.
Documentation
{
  "$schema": "https://lix.dev/schema-v1.json",
  "key": "lix_file_descriptor",
  "columns": [
    {
      "name": "directory_id",
      "type": "uuid",
      "nullable": true
    },
    {
      "name": "id",
      "type": "uuid",
      "nullable": false,
      "default_expression": "uuidv7()"
    },
    {
      "name": "name",
      "type": "text",
      "nullable": false
    }
  ],
  "primary_key": [
    "id"
  ],
  "unique": [
    [
      "directory_id",
      "name"
    ]
  ],
  "foreign_keys": [
    {
      "columns": [
        "directory_id"
      ],
      "references": {
        "schema_key": "lix_directory_descriptor",
        "columns": [
          "id"
        ]
      }
    }
  ]
}