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