SET FOREIGN_KEY_CHECKS=0; SET AUTOCOMMIT=0; START TRANSACTION; INSERT INTO `katao_period` (`id`, `name`, `begin_at`, `finish_at`, `order_ended_at`, `status`, `created_at`, `updated_at`) VALUES (1, 'Août 2009', '2009-08-01 00:00:00', '2009-08-31 23:59:59', '2009-08-29 23:59:59', 3, '2009-09-01 10:30:00', '2009-09-01 10:30:00'), (2, 'Septembre 2009', '2009-09-01 00:00:00', '2009-09-30 23:59:59', '2009-09-28 23:59:59', 1, '2009-09-01 10:30:00', '2009-09-01 10:30:00'), (3, 'Octobre 2009', '2009-10-01 00:00:00', '2009-10-31 23:59:59', '2009-10-29 23:59:59', 1, '2009-09-01 10:30:00', '2009-09-01 10:30:00'); SET FOREIGN_KEY_CHECKS=1; COMMIT;