Online status #43

Merged
baaboe merged 3 commits from wip/status into main 2025-08-04 19:22:59 +00:00
3 changed files with 5 additions and 0 deletions
Showing only changes of commit 314b9ee011 - Show all commits

View file

@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
ALTER TABLE users DROP COLUMN online_status;

View file

@ -0,0 +1,2 @@
-- Your SQL goes here
ALTER TABLE users ADD COLUMN online_status INT2 NOT NULL DEFAULT 0;

View file

@ -157,6 +157,7 @@ diesel::table! {
pronouns -> Nullable<Varchar>,
#[max_length = 200]
about -> Nullable<Varchar>,
online_status -> Int2,
}
}