setup/db: Fix missing semicolon in db create view command

Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
Rohit Yadav 2013-01-03 11:24:12 -08:00
parent edb00bb613
commit c0a0318f29
1 changed files with 1 additions and 1 deletions

View File

@ -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