1.4
1.3
Flyway Teams 1.2
Flyway Teams URL format | jdbc:h2:file |
---|---|
Ships with Flyway Command-line | Yes |
Maven Central coordinates | com.h2database:h2:1.4.197 |
Supported versions | 1.2.137 and later |
Default Java class | org.h2.Driver |
/* Single line comment */
CREATE TABLE test_data (
value VARCHAR(25) NOT NULL PRIMARY KEY
);
/*
Multi-line
comment
*/
-- Sql-style comment
-- Placeholder
INSERT INTO ${tableName} (name) VALUES ('Mr. T');
INSERT INTO test_user (name) VALUES ( $$'Mr. Semicolon+Linebreak;
another line'$$);