Skip to content

3.17.1

Choose a tag to compare

@kamshory kamshory released this 23 Aug 12:54

MagicObject Version 3.17.1

What’s Changed

  • PostgreSQL & SQLite Export: Removed unnecessary double quotes (") around table names when exporting database schema.

Details

Previously, exported DDL wrapped table names in quotes:

CREATE TABLE "useraccount" (...);

Starting from v3.17.1, table names are written without quotes:

CREATE TABLE useraccount (...);

Why This Change?

  • Cleaner SQL Output: Makes exported schema easier to read.
  • Improved Compatibility: Some tools and workflows expect unquoted identifiers in both PostgreSQL and SQLite.

Notes

  • No naming strategy changes were introduced. Table names remain exactly the same; only the surrounding quotes are removed.
  • If your schema relies on case-sensitive identifiers or reserved keywords, you may still need to add quotes manually.

What's Changed

  • PostgreSQL & SQLite Export: Removed unnecessary double quotes (`"… by @kamshory in #141

Full Changelog: 3.17.0...3.17.1