Files
ColdBreeze-chat-server-rust/migrations/20221214110231_is_bot.sql
T
2023-03-03 12:03:14 -05:00

9 lines
131 B
SQL

alter table
user
add
column is_bot boolean not null default false;
alter table
user_log
add
column is_bot boolean;