summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.3/postgresql/patch/services_times.sql
diff options
context:
space:
mode:
Diffstat (limited to 'upgrades/dbpatches/1.3/postgresql/patch/services_times.sql')
-rw-r--r--upgrades/dbpatches/1.3/postgresql/patch/services_times.sql10
1 files changed, 0 insertions, 10 deletions
diff --git a/upgrades/dbpatches/1.3/postgresql/patch/services_times.sql b/upgrades/dbpatches/1.3/postgresql/patch/services_times.sql
deleted file mode 100644
index e9e2e305..00000000
--- a/upgrades/dbpatches/1.3/postgresql/patch/services_times.sql
+++ /dev/null
@@ -1,10 +0,0 @@
-CREATE TABLE services_times (
- timeid bigint DEFAULT '0' NOT NULL,
- serviceid bigint DEFAULT '0' NOT NULL,
- type integer DEFAULT '0' NOT NULL,
- ts_from integer DEFAULT '0' NOT NULL,
- ts_to integer DEFAULT '0' NOT NULL,
- note varchar(255) DEFAULT '' NOT NULL,
- PRIMARY KEY (timeid)
-);
-CREATE INDEX services_times_times_1 on services_times (serviceid,type,ts_from,ts_to);