{
    "name": "issue_comment_reactions",
    "columns": [
        "id",
        "comment_id",
        "content",
        "created_at",
        "user",
        "last_updated"
    ],
    "schema": "CREATE TABLE `issue_comment_reactions` (\n\t`id` text PRIMARY KEY NOT NULL,\n\t`comment_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 (`comment_id`) REFERENCES `issue_comments`(`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)"
}