feat: introduce docker-compose based testing for running locally against many database combinations

This commit is contained in:
Ryan Leckey
2020-05-30 14:51:57 -07:00
parent afd831b0d3
commit e5b6047009
56 changed files with 2192 additions and 2326 deletions

8
tests/sqlite/setup.sql Normal file
View File

@@ -0,0 +1,8 @@
-- https://github.com/prisma/database-schema-examples/tree/master/postgres/basic-twitter#basic-twitter
CREATE TABLE tweet
(
id BIGINT NOT NULL PRIMARY KEY,
text TEXT NOT NULL,
is_sent BOOLEAN NOT NULL DEFAULT TRUE,
owner_id BIGINT
);