mirror of https://github.com/apache/cloudstack.git
setup/db: Fix missing semicolon in db create view command
Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
parent
edb00bb613
commit
c0a0318f29
|
|
@ -3173,7 +3173,7 @@ CREATE VIEW free_ip_view AS
|
|||
select count(user_ip_address.id) free_ip
|
||||
from user_ip_address
|
||||
inner join vlan on vlan.id = user_ip_address.vlan_db_id and vlan.vlan_type = "VirtualNetwork"
|
||||
where state = "Free"
|
||||
where state = "Free";
|
||||
|
||||
DROP VIEW IF EXISTS `cloud`.`account_view`;
|
||||
CREATE VIEW account_view AS
|
||||
|
|
|
|||
Loading…
Reference in New Issue