admin.data.sql 647 B

12345678910111213
  1. SET FOREIGN_KEY_CHECKS=0;
  2. SET AUTOCOMMIT=0;
  3. START TRANSACTION;
  4. INSERT INTO `katao_period` (`id`, `name`, `begin_at`, `finish_at`, `order_ended_at`, `status`, `created_at`, `updated_at`) VALUES
  5. (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'),
  6. (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'),
  7. (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');
  8. SET FOREIGN_KEY_CHECKS=1;
  9. COMMIT;