1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-02-19 17:54:14 +01:00

Dev: use nvarchar for SQL Server demos rather than varchar

This commit is contained in:
Allan Jardine 2018-06-14 11:06:03 +01:00
parent 4eec66f677
commit 97e465613b
2 changed files with 7 additions and 7 deletions

View File

@ -1 +1 @@
55c79f86885435d514ccc185f02721c24b177f95
34e0e9c5c2144cc4a165e920cf236f6e4b101d8a

View File

@ -8,16 +8,16 @@ END;
CREATE TABLE datatables_demo (
id INT PRIMARY KEY NOT NULL,
first_name VARCHAR(250),
last_name VARCHAR(250),
position VARCHAR(250),
email VARCHAR(250),
office VARCHAR(250),
first_name NVARCHAR(250),
last_name NVARCHAR(250),
position NVARCHAR(250),
email NVARCHAR(250),
office NVARCHAR(250),
start_date DATE,
age INT,
salary INT,
seq INT,
extn VARCHAR(8)
extn NVARCHAR(8)
);
CREATE SEQUENCE datatables_demo_seq;