{
    "name": "repo_summaries",
    "columns": [
        "id",
        "repo_id",
        "interval_type",
        "date",
        "summary",
        "last_updated"
    ],
    "schema": "CREATE TABLE `repo_summaries` (\n\t`id` text PRIMARY KEY NOT NULL,\n\t`repo_id` text NOT NULL,\n\t`interval_type` text DEFAULT 'month' NOT NULL,\n\t`date` text NOT NULL,\n\t`summary` text DEFAULT '',\n\t`last_updated` text DEFAULT CURRENT_TIMESTAMP NOT NULL\n)"
}