dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#2021 fix - Problem with MySQL y NOT NULL creation_timestamp column
rsanchez
2014-11-14
5beef4e86aa5355342e4e128752f40c51a493765
[common/securis.git]
/
securis
/
src
/
main
/
resources
/
db
/
create_db.sql
1
2
3
4
5
6
7
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;