summaryrefslogtreecommitdiff
path: root/sql/pgsql/migrations/126.sql
blob: 46f391aa50b318e9596916ef0f344852b2831db7 (plain)
1
2
3
4
5
6
7
8
begin;

alter table ttrss_enclosures add column height integer not null default 0;
alter table ttrss_enclosures add column width integer not null default 0;

update ttrss_version set schema_version = 126;

commit;