summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2025-05-02 21:51:07 +0300
committerAndrew Dolgov <fox@fakecake.org>2025-05-02 21:51:07 +0300
commit5256edd484d6d3efdd870fd04d09c289e2d23c61 (patch)
tree4f9534b1334344b7f44aee8f98646fd347b101f5 /sql
parentb30f8c93a00ce1ae2c582ca4c7f1d5d8425220ee (diff)
schema - spaces to tabs
Diffstat (limited to 'sql')
-rw-r--r--sql/pgsql/migrations/150.sql10
-rw-r--r--sql/pgsql/schema.sql8
2 files changed, 9 insertions, 9 deletions
diff --git a/sql/pgsql/migrations/150.sql b/sql/pgsql/migrations/150.sql
index c0aae3bdf..19f3aaa3a 100644
--- a/sql/pgsql/migrations/150.sql
+++ b/sql/pgsql/migrations/150.sql
@@ -1,6 +1,6 @@
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());
+ 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());
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;