dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#3296 fix - Increasing matadata value column length and decrease the key co...
rsanchez
2016-09-26
3779a947238c2707b8a04c8a237aa8ddbe4d7a4e
[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;