This repository has been archived on 2024-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
lwb5/sql/10-main.sql

19 lines
375 B
SQL

-- LegacyWorlds Beta 5
-- PostgreSQL database scripts
--
-- 10-main.sql
--
-- Initialises the main schema
--
-- Copyright(C) 2004-2007, DeepClone Development
-- --------------------------------------------------------
-- Connect to the database
\c legacyworlds legacyworlds_admin
-- Create the main schema
CREATE SCHEMA main;
GRANT USAGE ON SCHEMA main TO legacyworlds;