1
0
Fork 0
miniflux/sql/schema_version_2.sql

4 lines
138 B
MySQL
Raw Normal View History

2017-11-22 22:22:33 -08:00
create extension if not exists hstore;
alter table users add column extra hstore;
create index users_extra_idx on users using gin(extra);