We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a588a46 commit 958773dCopy full SHA for 958773d
examples/homePage/example.d
@@ -11,6 +11,8 @@ void main(string[] args)
11
Connection conn = new Connection(connectionStr);
12
scope(exit) conn.close();
13
14
+ conn.exec("DROP TABLE IF EXISTS `tablename`"); // So this code can run after "unittest-vibe-ut" during CI
15
+
16
// Create the schema (Would rather have `id` INTEGER NOT NULL PRIMARY KEY AUTO_INCREMENT but for now just get tests working)
17
conn.exec("CREATE TABLE IF NOT EXISTS `tablename` (
18
`id` INTEGER,
0 commit comments