DavidCramer / DB-Toolkit

WordPress Plugin to create and manage databases and custom content structures.
18 stars 7 forks source link

Set sql_quote_show_create off for picky dbDelta() #11

Closed gwythaint closed 10 years ago

gwythaint commented 10 years ago

dbDelta() is fussy; this pull request inhibits quotes when calling "SHOW TABLE CREATE" during an application export to prevent future application imports from tripping over problems of dbDelta() implementation.

Wordpress codex says dbDelta()'s constraints are.. You must put each field on its own line in your SQL statement.

You must have two spaces between the words PRIMARY KEY and the definition of your primary key.

You must use the key word KEY rather than its synonym INDEX and you must include at least one KEY.

You must not use any apostrophes or backticks around field names.