aboutsummaryrefslogtreecommitdiff
path: root/migrations/20210322015737_user_properties.sql
blob: 13a1e2e44473307ed9f5c37bb7e7bcc61487f82b (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
);