Skip to content

Commit 13cd90a

Browse files
committed
unit test added
1 parent 8fcb20b commit 13cd90a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

unit_tests.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,3 +128,13 @@ CREATE TABLE `scimag` (
128128
UNIQUE KEY `DOIUNIQUE` (`DOI`) USING BTREE,
129129
);
130130
SQL
131+
132+
cat <<\SQL
133+
CREATE TABLE `scimag` (
134+
`ID` int(15) unsigned NOT NULL AUTO_INCREMENT,
135+
`DOI` varchar(200) NOT NULL,
136+
`TEXTFIELD` TEXT DEFAULT ('text_value'),
137+
PRIMARY KEY (`ID`) USING BTREE,
138+
UNIQUE KEY `DOIUNIQUE` (`DOI`) USING BTREE,
139+
);
140+
SQL

0 commit comments

Comments
 (0)