diff --git a/database_upgrades/upgrade_freckles_to_gillian.sql b/database_upgrades/upgrade_freckles_to_gillian.sql new file mode 100644 index 0000000..6291b52 --- /dev/null +++ b/database_upgrades/upgrade_freckles_to_gillian.sql @@ -0,0 +1,11 @@ +CREATE TABLE IF NOT EXISTS `service` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `date` date DEFAULT NULL, + `odometer` int(11) DEFAULT NULL, + `vehicle_id` int(11) DEFAULT NULL, + `costs` decimal(10,2) DEFAULT NULL, + `description` varchar(4096) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `vehicle_id` (`vehicle_id`), + CONSTRAINT `service_ibfk_1` FOREIGN KEY (`vehicle_id`) REFERENCES `vehicle` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=latin1; \ No newline at end of file