diff options
Diffstat (limited to 'tests/unit/Data/SqlMap/scripts/mysql/documents-init.sql')
-rw-r--r-- | tests/unit/Data/SqlMap/scripts/mysql/documents-init.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/unit/Data/SqlMap/scripts/mysql/documents-init.sql b/tests/unit/Data/SqlMap/scripts/mysql/documents-init.sql new file mode 100644 index 00000000..258ae532 --- /dev/null +++ b/tests/unit/Data/SqlMap/scripts/mysql/documents-init.sql @@ -0,0 +1,8 @@ +TRUNCATE `Documents`; + +INSERT INTO Documents VALUES (1, 'The World of Null-A', 'Book', 55, null); +INSERT INTO Documents VALUES (2, 'Le Progres de Lyon', 'Newspaper', null , 'Lyon'); +INSERT INTO Documents VALUES (3, 'Lord of the Rings', 'Book', 3587, null); +INSERT INTO Documents VALUES (4, 'Le Canard enchaine', 'Tabloid', null , 'Paris'); +INSERT INTO Documents VALUES (5, 'Le Monde', 'Broadsheet', null , 'Paris'); +INSERT INTO Documents VALUES (6, 'Foundation', 'Monograph', 557, null); |