View and edit SQL

0 records

CREATE TABLE `instagram_profile_photos` (`id` integer,`created_at` datetime,`updated_at` datetime,`deleted_at` datetime,`taken_at` datetime UNIQUE,`is_active_profile` numeric,`path` text,PRIMARY KEY (`id`));
CREATE INDEX `idx_instagram_profile_photos_deleted_at` ON `instagram_profile_photos`(`deleted_at`);