1515-- specific language governing permissions and limitations
1616-- under the License.
1717
18- DROP TABLE IF EXISTS ` cloud ` .` mockhost` ;
19- DROP TABLE IF EXISTS ` cloud ` .` mocksecstorage` ;
20- DROP TABLE IF EXISTS ` cloud ` .` mockstoragepool` ;
21- DROP TABLE IF EXISTS ` cloud ` .` mockvm` ;
22- DROP TABLE IF EXISTS ` cloud ` .` mockvolume` ;
23- DROP TABLE IF EXISTS ` cloud ` .` mocksecurityrules` ;
18+ DROP TABLE IF EXISTS ` simulator ` .` mockhost` ;
19+ DROP TABLE IF EXISTS ` simulator ` .` mocksecstorage` ;
20+ DROP TABLE IF EXISTS ` simulator ` .` mockstoragepool` ;
21+ DROP TABLE IF EXISTS ` simulator ` .` mockvm` ;
22+ DROP TABLE IF EXISTS ` simulator ` .` mockvolume` ;
23+ DROP TABLE IF EXISTS ` simulator ` .` mocksecurityrules` ;
2424
25- CREATE TABLE `cloud `.` mockhost` (
25+ CREATE TABLE `simulator `.` mockhost` (
2626 ` id` bigint unsigned NOT NULL auto_increment,
2727 ` name` varchar (255 ) NOT NULL ,
2828 ` private_ip_address` char (40 ),
@@ -48,15 +48,15 @@ CREATE TABLE `cloud`.`mockhost` (
4848 PRIMARY KEY (` id` )
4949) ENGINE= InnoDB DEFAULT CHARSET= utf8;
5050
51- CREATE TABLE `cloud `.` mocksecstorage` (
51+ CREATE TABLE `simulator `.` mocksecstorage` (
5252 ` id` bigint unsigned NOT NULL auto_increment,
5353 ` url` varchar (255 ),
5454 ` capacity` bigint unsigned,
5555 ` mount_point` varchar (255 ),
5656 PRIMARY KEY (` id` )
5757) ENGINE= InnoDB DEFAULT CHARSET= utf8;
5858
59- CREATE TABLE `cloud `.` mockstoragepool` (
59+ CREATE TABLE `simulator `.` mockstoragepool` (
6060 ` id` bigint unsigned NOT NULL auto_increment,
6161 ` guid` varchar (255 ),
6262 ` mount_point` varchar (255 ),
@@ -67,7 +67,7 @@ CREATE TABLE `cloud`.`mockstoragepool` (
6767) ENGINE= InnoDB DEFAULT CHARSET= utf8;
6868
6969
70- CREATE TABLE `cloud `.` mockvm` (
70+ CREATE TABLE `simulator `.` mockvm` (
7171 ` id` bigint unsigned NOT NULL auto_increment,
7272 ` name` varchar (255 ),
7373 ` host_id` bigint unsigned,
@@ -83,7 +83,7 @@ CREATE TABLE `cloud`.`mockvm` (
8383) ENGINE= InnoDB DEFAULT CHARSET= utf8;
8484
8585
86- CREATE TABLE `cloud `.` mockvolume` (
86+ CREATE TABLE `simulator `.` mockvolume` (
8787 ` id` bigint unsigned NOT NULL auto_increment,
8888 ` name` varchar (255 ),
8989 ` size` bigint unsigned,
@@ -97,7 +97,7 @@ CREATE TABLE `cloud`.`mockvolume` (
9797) ENGINE= InnoDB DEFAULT CHARSET= utf8;
9898
9999
100- CREATE TABLE `cloud `.` mockconfiguration` (
100+ CREATE TABLE `simulator `.` mockconfiguration` (
101101 ` id` bigint unsigned NOT NULL auto_increment,
102102 ` data_center_id` bigint unsigned,
103103 ` pod_id` bigint unsigned,
@@ -108,7 +108,7 @@ CREATE TABLE `cloud`.`mockconfiguration` (
108108 PRIMARY KEY (` id` )
109109) ENGINE= InnoDB DEFAULT CHARSET= utf8;
110110
111- CREATE TABLE `cloud `.` mocksecurityrules` (
111+ CREATE TABLE `simulator `.` mocksecurityrules` (
112112 ` id` bigint unsigned NOT NULL auto_increment,
113113 ` vmid` bigint unsigned,
114114 ` signature` varchar (255 ),
0 commit comments