Skip to content

Commit 3707eb5

Browse files
committed
💡 update README to clarify legacy behavior of SQLite views option
1 parent 1973c05 commit 3707eb5

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ Options:
4545
Implies --without-foreign-keys which
4646
inhibits the transfer of foreign keys. Can
4747
not be used together with --sqlite-tables.
48+
-A, --sqlite-views-as-tables Materialize SQLite views as tables in MySQL
49+
instead of creating matching MySQL views
50+
(legacy behavior).
4851
-X, --without-foreign-keys Do not transfer foreign keys.
4952
-W, --ignore-duplicate-keys Ignore duplicate keys. The default behavior
5053
is to create new ones with a numerical

docs/README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Transfer Options
3636

3737
- ``-t, --sqlite-tables TUPLE``: Transfer only these specific tables (space separated table names). Implies ``--without-foreign-keys`` which inhibits the transfer of foreign keys. Can not be used together with ``--exclude-sqlite-tables``.
3838
- ``-e, --exclude-sqlite-tables TUPLE``: Exclude these specific tables (space separated table names). Implies ``--without-foreign-keys`` which inhibits the transfer of foreign keys. Can not be used together with ``--sqlite-tables``.
39+
- ``-A, --sqlite-views-as-tables``: Materialize SQLite views as tables in MySQL instead of creating matching MySQL views (legacy behavior).
3940
- ``-E, --mysql-truncate-tables``: Truncates existing tables before inserting data.
4041
- ``-K, --mysql-skip-create-tables``: Skip creating tables in MySQL.
4142
- ``-i, --mysql-insert-method [UPDATE|IGNORE|DEFAULT]``: MySQL insert method. DEFAULT will throw errors when encountering duplicate records; UPDATE will update existing rows; IGNORE will ignore insert errors. Defaults to IGNORE.

0 commit comments

Comments
 (0)