14
14
col5 enum('PENDING', 'ACTIVE', 'DISABLED') not null,
15
15
col6 int not null, to_be_deleted int);
16
16
insert into t1 values (2,4,3,5,"PENDING",1,7);
18
21
add column col4_5 varchar(20) not null after col4,
19
22
add column col7 varchar(30) not null after col5,
20
23
add column col8 datetime not null default '1000-01-01 00:00:00', drop column to_be_deleted,
21
24
change column col2 fourth varchar(30) not null after col3,
22
25
modify column col6 int not null first;