mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-03-23 10:38:57 +00:00
feat: introduce docker-compose based testing for running locally against many database combinations
This commit is contained in:
8
tests/sqlite/setup.sql
Normal file
8
tests/sqlite/setup.sql
Normal 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
|
||||
);
|
||||
Reference in New Issue
Block a user