dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#396 fix - Removed SQL lof traces
rsanchez
2014-12-05
59d93a8b08e4d31e182c5e8948db7be0f75180ff
[common/securis.git]
/
securis
/
src
/
main
/
resources
/
db
/
create_db.sql
1
2
3
4
5
create database securis CHARACTER SET utf8 COLLATE utf8_bin;
create user securis@localhost identified by 'securis';
grant all on securis.* to securis@localhost;
#Update passwords
flush privileges;