View and edit SQL

0 records

CREATE TABLE `google_place_path_points` (`id` integer,`created_at` datetime,`updated_at` datetime,`deleted_at` datetime,`place_visit_id` integer,`accuracy_meters` integer,`lat_e7` integer,`lng_e7` integer,`time` datetime,PRIMARY KEY (`id`),CONSTRAINT `fk_google_place_path_points_place_visit` FOREIGN KEY (`place_visit_id`) REFERENCES `google_place_visits`(`id`),CONSTRAINT `fk_google_place_visits_simplified_raw_path_points` FOREIGN KEY (`place_visit_id`) REFERENCES `google_place_visits`(`id`));
CREATE INDEX `idx_google_place_path_points_deleted_at` ON `google_place_path_points`(`deleted_at`);