mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-14 07:55:33 +01:00
initial netcafe implementation
This commit is contained in:
21
patch-schema/netcafe.sql
Normal file
21
patch-schema/netcafe.sql
Normal file
@@ -0,0 +1,21 @@
|
||||
BEGIN;
|
||||
|
||||
ALTER TABLE IF EXISTS public.characters
|
||||
ADD COLUMN cafe_time integer DEFAULT 0;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS public.cafebonus
|
||||
(
|
||||
id integer NOT NULL PRIMARY KEY,
|
||||
line integer NOT NULL,
|
||||
itemclass integer NOT NULL,
|
||||
itemid integer NOT NULL,
|
||||
tradequantity integer NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS public.cafe_accepted
|
||||
(
|
||||
cafe_id integer NOT NULL,
|
||||
character_id integer NOT NULL
|
||||
);
|
||||
|
||||
END;
|
||||
Reference in New Issue
Block a user