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/beta5/structure/00-gdata.sql

19 lines
388 B
MySQL
Raw Normal View History

2016-01-10 11:01:49 +01:00
-- LegacyWorlds Beta 5
-- PostgreSQL database scripts
--
-- beta5/structure/00-gdata.sql
--
-- Beta 5 games:
-- Table that stores game data
--
-- Copyright(C) 2004-2007, DeepClone Development
-- --------------------------------------------------------
CREATE TABLE gdata (
id VARCHAR(8) PRIMARY KEY,
value VARCHAR(60) NOT NULL
);
GRANT INSERT,SELECT,UPDATE ON gdata TO legacyworlds;