OrangeGuidanceTomestone/server/migrations/8_add_last_seen.sql

7 lines
154 B
MySQL
Raw Normal View History

2022-09-06 12:07:23 +00:00
alter table users
add column last_seen timestamp not null default 0;
-- noinspection SqlWithoutWhere
update users
set last_seen = current_timestamp;