1
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-01-03 14:57:55 -05:00

Add 'IF EXISTS', otherwise an error would show on MySQL that has no

'gogs' created before.
This commit is contained in:
Chen Chao Shih 2014-05-01 23:26:08 +08:00 committed by frankts_chen
parent 46af92c57e
commit 6ce8fa49ea

View File

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