groue / GRDB.swift

A toolkit for SQLite databases, with a focus on application development
MIT License
6.61k stars 677 forks source link

Database schema dump #1511

Closed groue closed 3 months ago

groue commented 3 months ago

This pull request adds the dumpSchema method that prints the database schema. It's like dumpContent, but without the content of database tables.

For example:

// Prints:
// sqlite_master
// CREATE TABLE player (id INTEGER PRIMARY KEY, name TEXT, score INTEGER)
try dbQueue.dumpSchema()