sqlite.txt 534 B

12345678910111213
  1. SQLite shares the MySQL schema file at maintenance/tables.sql, with a set of
  2. compatibility regexes to convert MySQL syntax to SQLite syntax:
  3. * BINARY() and VARBINARY() fields are converted to BLOB
  4. * the UNSIGNED modifier is removed
  5. * "INT" fields are converted to "INTEGER"
  6. * ENUM is converted to BLOB
  7. * the BINARY collation modifier is removed
  8. * AUTO_INCREMENT is converted to AUTOINCREMENT
  9. * Any table options are removed
  10. * Truncated indexes are upgraded to full-width indexes
  11. * FULLTEXT indexes are converted to ordinary indexes