mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-14 07:55:33 +01:00
implement persistent house data
This commit is contained in:
19
patch-schema/persistent-house.sql
Normal file
19
patch-schema/persistent-house.sql
Normal file
@@ -0,0 +1,19 @@
|
||||
BEGIN;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS public.user_binary
|
||||
(
|
||||
id serial NOT NULL PRIMARY KEY,
|
||||
type2 bytea,
|
||||
type3 bytea,
|
||||
house_tier bytea,
|
||||
house_state int,
|
||||
house_password text,
|
||||
house_data bytea,
|
||||
house_furniture bytea,
|
||||
bookshelf bytea,
|
||||
gallery bytea,
|
||||
tore bytea,
|
||||
garden bytea
|
||||
);
|
||||
|
||||
END;
|
||||
Reference in New Issue
Block a user