0 rows where time = "2021-03-04 14:15:51 00:00"

View and edit SQL

time

0 records

CREATE TABLE `health_workout_routes` (`id` integer,`created_at` datetime,`updated_at` datetime,`deleted_at` datetime,`workout_id` integer,`source_name` text,`source_version` text,`creation_date` datetime,`start_date` datetime,`end_date` datetime,`file_path` text,`time` datetime,`track_name` text,PRIMARY KEY (`id`),CONSTRAINT `fk_health_workouts_route` FOREIGN KEY (`workout_id`) REFERENCES `health_workouts`(`id`));
CREATE INDEX `idx_health_workout_routes_deleted_at` ON `health_workout_routes`(`deleted_at`);
CREATE UNIQUE INDEX `health_workout_routes_key` ON `health_workout_routes`(`workout_id`,`creation_date`);