dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#0 - Changed license_data length from 1024 to 2048
César Calvo
2019-05-14
6c37f45769676e92b1b62a31b3f59f202dc67678
[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;