aboutsummaryrefslogtreecommitdiff
path: root/migrations/20210322015737_user_properties.sql
blob: be0ea9eebb976b3b0b9c1b50e363244b4dc40f59 (plain) (blame)
1
2
3
4
5
6
7
8
CREATE TABLE "user_propertyies" (
	"user_name"	TEXT NOT NULL,
	"property_id"	INTEGER NOT NULL,
	"property_flags" INTEGER NOT NULL,
	"property_access"	INTEGER NOT NULL,
	"property_string_value"	TEXT,
	"property_binary_value"	TEXT
);