和老师的sql一样,怎么会报错1067?
DROP TABLE IF EXISTS `seckill`; create table seckill( `seckill_id` bigint not null auto_increment comment '商品库存ID', `name` varchar(120) not null comment '商品名称', `number` int not null comment '库存数量', `start_time` timestamp not null comment '秒杀开始时间', `end_time` timestamp not null comment '秒杀结束时间', `create_time` timestamp not null default current_timestamp comment '创建时间', primary key (seckill_id), key idx_start_time(start_time), key idx_end_time(end_time), key idx_create_time(create_time) )ENGINE=InnoDB AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8 comment='秒杀库存表';
1067 - Invalid default value for 'end_time'