0 rows where comment_id = 1

View and edit SQL

0 records

CREATE TABLE `instagram_comment_hashtag_mentions` (`id` integer,`created_at` datetime,`updated_at` datetime,`deleted_at` datetime,`comment_id` integer,`hashtag_id` integer,`from_idx` integer,`to_idx` integer,PRIMARY KEY (`id`),CONSTRAINT `fk_instagram_comments_hashtag_mentions` FOREIGN KEY (`comment_id`) REFERENCES `instagram_comments`(`id`),CONSTRAINT `fk_instagram_comment_hashtag_mentions_hashtag` FOREIGN KEY (`hashtag_id`) REFERENCES `instagram_hashtags`(`id`));
CREATE UNIQUE INDEX `instagram_comment_hashtag_mentions_key` ON `instagram_comment_hashtag_mentions`(`comment_id`,`hashtag_id`,`from_idx`,`to_idx`);
CREATE INDEX `idx_instagram_comment_hashtag_mentions_deleted_at` ON `instagram_comment_hashtag_mentions`(`deleted_at`);