v4
This commit is contained in:
@@ -5,11 +5,10 @@ create table if not exists customers (
|
||||
name text check(name is null or trim(name) <> '' and length(name) < 256),
|
||||
email text check(email is null or trim(email) <> '' and length(email) < 128),
|
||||
password text check(password is null or length(password) > 7 and length(password) < 64),
|
||||
telegram_user_id integer,
|
||||
telegram_id integer,
|
||||
plan integer,
|
||||
json_balance text default '{}',
|
||||
activation_key text,
|
||||
is_active integer default 0,
|
||||
is_blocked integer default 0,
|
||||
json_company text default '{}',
|
||||
upload_group_id integer,
|
||||
json_backup_server text default '{}',
|
||||
|
||||
Reference in New Issue
Block a user