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