From bda9b88ada89b56a7d73b03967ab9359b90320b1 Mon Sep 17 00:00:00 2001 From: Allan Jardine Date: Tue, 1 Oct 2019 12:44:09 +0000 Subject: [PATCH] Dev: Fix SQLite syntax - `timestamp without timezone` doesn't actually do anything other than `timestamp` in SQLite --- .datatables-commit-sync | 2 +- examples/server_side/scripts/sqlite.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.datatables-commit-sync b/.datatables-commit-sync index fe4c8149..586010ef 100644 --- a/.datatables-commit-sync +++ b/.datatables-commit-sync @@ -1 +1 @@ -e69160b00330fa8122a5135e68e6300d66841fdb +29c42de711218eef3d64bacbde5491bb51a50873 diff --git a/examples/server_side/scripts/sqlite.sql b/examples/server_side/scripts/sqlite.sql index b52ddade..95ca71a4 100644 --- a/examples/server_side/scripts/sqlite.sql +++ b/examples/server_side/scripts/sqlite.sql @@ -10,7 +10,7 @@ CREATE TABLE datatables_demo ( position text NOT NULL default '', email text NOT NULL default '', office text NOT NULL default '', - start_date timestamp without time zone default NULL, + start_date timestamp default NULL, age integer, salary integer, seq integer,