{
    "name": "pr_reactions",
    "columns": [
        "id",
        "pr_id",
        "content",
        "created_at",
        "user",
        "last_updated"
    ],
    "schema": "CREATE TABLE `pr_reactions` (\n\t`id` text PRIMARY KEY NOT NULL,\n\t`pr_id` text NOT NULL,\n\t`content` text NOT NULL,\n\t`created_at` text NOT NULL,\n\t`user` text,\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 (`user`) REFERENCES `users`(`username`) ON UPDATE no action ON DELETE no action\n)"
}