test005.src.sql 280 Bytes
DROP DATABASE IF EXISTS `test005`;
CREATE DATABASE `test005`;
USE `test005`;

SET TIME_ZONE='+07:00';
DROP TABLE IF EXISTS `test000`;
CREATE TABLE `test000`(
  `id` int,
  `col` TIMESTAMP NOT NULL
);
INSERT INTO `test000` VALUES (1,'2014-01-01 00:00:00');
SET TIME_ZONE='+00:00';