mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-08-06 06:07:29 +02:00
6 lines
279 B
SQL
6 lines
279 B
SQL
alter table ttrss_feeds rename column auth_pass to auth_pass_old;
|
|
alter table ttrss_feeds add column auth_pass text;
|
|
update ttrss_feeds set auth_pass = auth_pass_old;
|
|
alter table ttrss_feeds alter column auth_pass set not null;
|
|
alter table ttrss_feeds drop column auth_pass_old;
|