21.1
21.0
20.x
19.x
2.1
2.0
1.1
Compatible | ✅ |
---|---|
Certified | ✅ |
Guaranteed | ✅ Flyway Teams |
Support Level determines the degree of support available for this database (learn more).
URL format | jdbc:postgresql://host:port/database |
---|---|
SSL support | Yes |
Ships with Flyway Command-line | Yes |
Maven Central coordinates | org.postgresql:postgresql:42.2.5 |
Supported versions | 9.3-1104-jdbc4 and later |
Default Java class | org.postgresql.Driver |
/* Single line comment */
CREATE TABLE test_data (
value VARCHAR(25) NOT NULL PRIMARY KEY
);
/*
Multi-line
comment
*/
-- Placeholder
INSERT INTO ${tableName} (name) VALUES ('Mr. T');
\set