0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-09-29 12:38:59 +02: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;