aboutsummaryrefslogtreecommitdiff
path: root/migrations/20210322015737_user_properties.up.sql
blob: fe43761e18c0bf12480c1bb290142001a342db10 (plain) (blame)
1
2
3
4
5
6
7
8
CREATE TABLE user_properties (
	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
)