feat(gpodder_sqlite): add user admin field

This commit is contained in:
Jef Roosens 2025-06-24 13:07:06 +02:00
parent 346c27fc3f
commit 669aa475ca
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
6 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1,2 @@
alter table users
drop column admin;

View file

@ -0,0 +1,2 @@
alter table users
add column admin boolean not null default false;