{
    "name": "pr_closing_issue_references",
    "columns": [
        "id",
        "pr_id",
        "issue_id",
        "issue_number",
        "issue_title",
        "issue_state",
        "last_updated"
    ],
    "schema": "CREATE TABLE `pr_closing_issue_references` (\n\t`id` text PRIMARY KEY NOT NULL,\n\t`pr_id` text NOT NULL,\n\t`issue_id` text NOT NULL,\n\t`issue_number` integer NOT NULL,\n\t`issue_title` text NOT NULL,\n\t`issue_state` text NOT NULL,\n\t`last_updated` text DEFAULT CURRENT_TIMESTAMP NOT NULL,\n\tFOREIGN KEY (`pr_id`) REFERENCES `raw_pull_requests`(`id`) ON UPDATE no action ON DELETE no action,\n\tFOREIGN KEY (`issue_id`) REFERENCES `raw_issues`(`id`) ON UPDATE no action ON DELETE no action\n)"
}