@@ -27,20 +27,20 @@ alter table vm_instance add column disk_offering_id bigint unsigned;
2727alter table data_center add column owner varchar (255 );
2828alter table data_center add column created datetime COMMENT ' date created' ;
2929alter table data_center add column lastUpdated datetime COMMENT ' last updated' ;
30- alter table data_center add column engine_state varchar (32 ) NOT NULL COMMENT ' the engine state of the zone' ;
30+ alter table data_center add column engine_state varchar (32 ) NOT NULL DEFAULT ' Disabled ' COMMENT ' the engine state of the zone' ;
3131alter table host_pod_ref add column owner varchar (255 );
3232alter table host_pod_ref add column created datetime COMMENT ' date created' ;
3333alter table host_pod_ref add column lastUpdated datetime COMMENT ' last updated' ;
34- alter table host_pod_ref add column engine_state varchar (32 ) NOT NULL COMMENT ' the engine state of the zone' ;
34+ alter table host_pod_ref add column engine_state varchar (32 ) NOT NULL DEFAULT ' Disabled ' COMMENT ' the engine state of the zone' ;
3535alter table host add column owner varchar (255 );
3636alter table host add column lastUpdated datetime COMMENT ' last updated' ;
37- alter table host add column engine_state varchar (32 ) NOT NULL COMMENT ' the engine state of the zone' ;
37+ alter table host add column engine_state varchar (32 ) NOT NULL DEFAULT ' Disabled ' COMMENT ' the engine state of the zone' ;
3838
3939
4040alter table cluster add column owner varchar (255 );
4141alter table cluster add column created datetime COMMENT ' date created' ;
4242alter table cluster add column lastUpdated datetime COMMENT ' last updated' ;
43- alter table cluster add column engine_state varchar (32 ) NOT NULL COMMENT ' the engine state of the zone' ;
43+ alter table cluster add column engine_state varchar (32 ) NOT NULL DEFAULT ' Disabled ' COMMENT ' the engine state of the zone' ;
4444
4545CREATE TABLE `cloud `.` data_store_provider` (
4646 ` id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT ' id' ,
0 commit comments