Template
1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo synced 2024-11-24 18:56:11 +01: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;