backend/migrations/2025-08-04-180235_add_status_to_user/up.sql
BAaboe 314b9ee011
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
feat: added online_status column to users table
2025-08-04 20:07:46 +02:00

2 lines
90 B
SQL

-- Your SQL goes here
ALTER TABLE users ADD COLUMN online_status INT2 NOT NULL DEFAULT 0;