mascarpone/migrations/users.db/02_add-ephemeral.sql

6 lines
137 B
MySQL
Raw Normal View History

2025-11-27 13:45:21 -06:00
alter table users add column
ephemeral boolean not null default false
;
update users set ephemeral = false where ephemeral is null;