diff options
Diffstat (limited to 'sql/pgsql/schema.sql')
| -rw-r--r-- | sql/pgsql/schema.sql | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/pgsql/schema.sql b/sql/pgsql/schema.sql index 7e995f915..3145629fc 100644 --- a/sql/pgsql/schema.sql +++ b/sql/pgsql/schema.sql @@ -397,9 +397,9 @@ create table ttrss_error_log( create table ttrss_scheduled_tasks( id serial not null primary key, - task_name varchar(250) unique not null, - last_duration integer not null, - last_rc integer not null, - last_run timestamp not null default NOW()); + task_name varchar(250) unique not null, + last_duration integer not null, + last_rc integer not null, + last_run timestamp not null default NOW()); commit; |