README.org in arql-0.3.30 vs README.org in arql-0.3.31
- old
+ new
@@ -173,10 +173,11 @@
4. =ssh.port= : ssh port, default is =22=
5. =ssh.user= : ssh username
6. =ssh.password= : ssh password
7. =ssh.local_port= : ssh local port
8. =singularized_table_names=: Whether to use singular table names, default is =false=, if =false=, the =students= table will be defined as the =Student= model, if =true=, the =students= table will be defined as the =Students= model
+ 9. =table_name_prefixes=: An array of table name prefixes, defaults to an empty array. If specified, these prefixes will be ignored when generating models. For example, if =["t_"]= is specified, then the =t_students= table will be defined as the =Student= model
**** Example
#+begin_example
default: &default
@@ -188,19 +189,21 @@
local:
<<: *default
username: root
database: blog
+ table_name_prefixes: ["t_"]
password:
socket: /tmp/mysql.sock
dev:
<<: *default
host: devdb.mycompany.com
port: 3306
username: root
password: 123456
database: blog
+ table_name_prefixes: ["t_"]
ssh:
host: dev.mycompany.com
port: 22
user: deploy
password: 12345678