From fadd83e37dc7a2baaf8d5851e1d0813f6ac307d7 Mon Sep 17 00:00:00 2001
From: rsanchez <rsanchez@curisit.net>
Date: Fri, 28 Nov 2014 17:12:06 +0000
Subject: [PATCH] #396 fix - Changed DB init script to allow only localhost user access and changed DB scheme to make it compatible with MySQL 5.1

---
 securis/src/main/resources/db/create_db.sql |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/securis/src/main/resources/db/create_db.sql b/securis/src/main/resources/db/create_db.sql
index 5f45075..00aa749 100644
--- a/securis/src/main/resources/db/create_db.sql
+++ b/securis/src/main/resources/db/create_db.sql
@@ -1,7 +1,5 @@
 create database securis CHARACTER SET utf8 COLLATE utf8_bin;
-create user securis identified by 'securis';
 create user securis@localhost identified by 'securis';
-grant all on securis.* to securis;
 grant all on securis.* to securis@localhost;
 #Update passwords
 flush privileges;
\ No newline at end of file

--
Gitblit v1.3.2