increase length of column Feeds.url in MySQL from 100 to 1000

If Feed's URL is too long, user got error "Feed was not added due to error"
This commit is contained in:
Harduino 2020-04-30 12:13:48 +03:00
parent 6c34f1a925
commit 6c961dfad7
2 changed files with 4 additions and 0 deletions

View File

@ -11,6 +11,7 @@
<file>sql/db_update_mysql_8_9.sql</file>
<file>sql/db_update_mysql_9_10.sql</file>
<file>sql/db_update_mysql_10_11.sql</file>
<file>sql/db_update_mysql_11_12.sql</file>
<file>sql/db_init_sqlite.sql</file>
<file>sql/db_update_sqlite_1_2.sql</file>

View File

@ -0,0 +1,3 @@
ALTER TABLE Feeds
MODIFY url VARCHAR(1000);
-- !