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 8396853 commit dbe7e01Copy full SHA for dbe7e01
unit_tests.sh
@@ -137,4 +137,17 @@ CREATE TABLE `scimag` (
137
PRIMARY KEY (`ID`) USING BTREE,
138
UNIQUE KEY `DOIUNIQUE` (`DOI`) USING BTREE,
139
);
140
-SQL
+SQLin
141
+
142
+cat <<\SQLout
143
+PRAGMA synchronous = OFF;
144
+PRAGMA journal_mode = MEMORY;
145
+BEGIN TRANSACTION;
146
+CREATE TABLE `scimag` (
147
+ `ID` integer NOT NULL PRIMARY KEY AUTOINCREMENT
148
+, `DOI` varchar(200) NOT NULL
149
+, `TEXTFIELD` text DEFAULT ('text_value')
150
+, UNIQUE (`DOI`)
151
+);
152
+END TRANSACTION;
153
+SQLout
0 commit comments