1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-12-26 13:29:12 -05:00

add mysql create db sql file

This commit is contained in:
Lunny Xiao 2014-03-29 14:35:27 +08:00
parent 89258e868b
commit e085d7738a

2
conf/mysql.sql Normal file
View file

@ -0,0 +1,2 @@
DROP DATABASE gogs;
CREATE DATABASE IF NOT EXISTS gogs CHARACTER SET utf8 COLLATE utf8_general_ci;