]> git.phdru.name Git - sqlconvert.git/commitdiff
Docs: Update TODO
authorOleg Broytman <phd@phdru.name>
Tue, 24 Oct 2017 23:35:04 +0000 (02:35 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 24 Oct 2017 23:35:26 +0000 (02:35 +0300)
[skip ci]

TODO

diff --git a/TODO b/TODO
index 69cd5facd28cc94b21d3edec2264dd7238268852..f3b3e01f97c19e16561ea83edad522c4b83b7ed7 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,25 +1,28 @@
 In SQLite/Postgres (non-MySQL) mode:
 
-   Replace AUTO_INCREMENT columns with INTEGER PRIMARY KEY for SQLite or
-   serial for Postgres.
+   In CREATE TABLE:
 
-   Change TINYINT to SMALLINT. Remove UNSIGNED.
-   For Postgres replace int with INTEGER.
+      Replace AUTO_INCREMENT columns with INTEGER PRIMARY KEY for SQLite or
+      serial for Postgres.
 
-   Remove CHARACTER SET, COLLATE and COMMENT from column definitions.
+      Change TINYINT to SMALLINT. Remove UNSIGNED.
+      For Postgres replace int with INTEGER.
 
-   Remove KEY and inde name from UNIQUE KEY:
-   UNIQUE KEY name (columns) -> UNIQUE (columns).
+      Remove CHARACTER SET, COLLATE and COMMENT from column definitions.
 
-   Change multicolumn PRIMARY KEY to UNIQUE.
+      Remove KEY and index name from UNIQUE KEY:
+      UNIQUE KEY name (columns) -> UNIQUE (columns).
 
-   Remove table options like ENGINE, AUTO_INCREMENT, CHARSET, etc:
-   CREATE TABLE name (column_definitions) table_options.
+      Change multicolumn PRIMARY KEY to UNIQUE.
 
-   Remove LOCK/UNLOCK TABLES.
+      Remove table options like ENGINE, AUTO_INCREMENT, CHARSET, etc:
+      CREATE TABLE name (column_definitions) table_options.
+
+      Convert KEY to CREATE INDEX; remove size limit:
+         KEY name ("COLUMN_NAME"(20)) ->
+         CREATE INDEX name ON table ("COLUMN_NAME").
 
-   Convert KEY to CREATE INDEX; remove size limit:
-   KEY name ("COLUMN_NAME"(20)) -> CREATE INDEX name ON table ("COLUMN_NAME").
+   Remove LOCK/UNLOCK TABLES.
 
 
 Installers.