blob: dea9954248f2abe3242843b8c89269ea23ea6b9b (
plain)
1
2
3
4
5
6
7
|
-- SQL script to create database for wiki. This is run from
-- the installation script which replaces the variables with
-- their values from local settings.
--
DROP DATABASE IF EXISTS `{$wgDBname}`;
CREATE DATABASE `{$wgDBname}`;
|