mirror of
https://github.com/miniflux/v2.git
synced 2025-06-27 16:36:00 +00:00
3 lines
138 B
SQL
3 lines
138 B
SQL
create extension if not exists hstore;
|
|
alter table users add column extra hstore;
|
|
create index users_extra_idx on users using gin(extra);
|