diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-03-18 09:52:46 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-03-18 09:52:46 +0100 |
commit | ebc8cff3b4f15242ebed2bacf3811606171c1a38 (patch) | |
tree | 7c7c2c3f19d780dace5b2020a6b05df380526eaa /database | |
parent | 8c5618c497045a87cd2d9c663e695aeab95d24d7 (diff) |
remove avatar column from users table
Diffstat (limited to 'database')
-rw-r--r-- | database/init_db.sql | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/database/init_db.sql b/database/init_db.sql index d05af6e..cd52e2e 100644 --- a/database/init_db.sql +++ b/database/init_db.sql @@ -12,7 +12,6 @@ create table if not exists users ( verified_email boolean not null, type text not null, preferences text not null, - avatar text, presence text ); |