mirror of https://github.com/apache/cloudstack.git
28 lines
1.6 KiB
SQL
28 lines
1.6 KiB
SQL
# Copyright (C) 2011 Citrix Systems, Inc. All rights reserved
|
|
#
|
|
# This software is licensed under the GNU General Public License v3 or later.
|
|
#
|
|
# It is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or any later version.
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
ALTER table snapshots add column `data_center_id` bigint unsigned NOT NULL ;
|
|
ALTER table snapshots add column `domain_id` bigint unsigned NOT NULL;
|
|
ALTER table snapshots add column `disk_offering_id` bigint unsigned NOT NULL;
|
|
ALTER table snapshots add column `size` bigint unsigned NOT NULL;
|
|
ALTER table snapshots add column `version` varchar(32) DEFAULT '2.1';
|
|
ALTER table snapshots add column `hypervisor_type` varchar(32) DEFAULT 'XenServer';
|
|
|
|
DELETE FROM snapshot_policy where id=1;
|
|
UPDATE snapshots s, volumes v SET s.data_center_id=v.data_center_id, s.domain_id=v.domain_id, s.disk_offering_id=v.disk_offering_id, s.size=v.size WHERE s.volume_id = v.id;
|
|
UPDATE snapshots s, snapshot_policy sp, snapshot_policy_ref spr SET s.snapshot_type=sp.interval+3 WHERE s.id=spr.snap_id and spr.policy_id=sp.id;
|
|
|
|
DROP table snapshot_policy_ref;
|