{
    "name": "tags",
    "columns": [
        "name",
        "category",
        "description",
        "weight",
        "patterns",
        "created_at",
        "last_updated"
    ],
    "schema": "CREATE TABLE `tags` (\n\t`name` text PRIMARY KEY NOT NULL,\n\t`category` text NOT NULL,\n\t`description` text DEFAULT '',\n\t`weight` real DEFAULT 1 NOT NULL,\n\t`patterns` text DEFAULT '[]' NOT NULL,\n\t`created_at` text DEFAULT CURRENT_TIMESTAMP NOT NULL,\n\t`last_updated` text DEFAULT CURRENT_TIMESTAMP NOT NULL\n)"
}