File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ Database drivers run migrations. [Add a new database?](database/driver.go)
4141* [ CockroachDB] ( database/cockroachdb )
4242* [ YugabyteDB] ( database/yugabytedb )
4343* [ ClickHouse] ( database/clickhouse )
44+ * [ DuckDB] ( database/duckdb )
4445* [ Firebird] ( database/firebird )
4546* [ MS SQL Server] ( database/sqlserver )
4647* [ rqlite] ( database/rqlite )
Original file line number Diff line number Diff line change 1+ # DuckDB
2+
3+ ` duckdb://path/to/database.db `
4+
5+ | URL Query | Description |
6+ | ------------| -------------|
7+ | ` x-migrations-table ` | Name of the migrations table (default: ` schema_migrations ` ) |
8+
9+ ## Notes
10+
11+ * DuckDB is an in-process SQL OLAP database management system.
12+ * Uses the official DuckDB Go driver: [ github.com/duckdb/duckdb-go/v2] ( https://github.com/duckdb/duckdb-go )
13+ * Supports in-memory databases using ` :memory: ` as the path.
You can’t perform that action at this time.
0 commit comments