View and edit SQL

0 records

CREATE TABLE `twitter_direct_messages` (`id` integer,`created_at` datetime,`updated_at` datetime,`deleted_at` datetime,`conversation_id` text,`recipient_id` integer,`text` text,`media_urls` text,`sender_id` integer,`created` datetime,PRIMARY KEY (`id`),CONSTRAINT `fk_twitter_conversations_direct_messages` FOREIGN KEY (`conversation_id`) REFERENCES `twitter_conversations`(`id`));
CREATE INDEX `idx_twitter_direct_messages_deleted_at` ON `twitter_direct_messages`(`deleted_at`);