You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
688 B
38 lines
688 B
---
|
|
kind: reverse
|
|
name: mydb
|
|
source:
|
|
database: sqlite3
|
|
conn_str: "../testdata/test.db"
|
|
targets:
|
|
- type: codes
|
|
language: golang
|
|
output_dir: ../models/include-exclude/include-only
|
|
include_tables:
|
|
- a
|
|
---
|
|
kind: reverse
|
|
name: mydb
|
|
source:
|
|
database: sqlite3
|
|
conn_str: "../testdata/test.db"
|
|
targets:
|
|
- type: codes
|
|
language: golang
|
|
output_dir: ../models/include-exclude/exclude-only
|
|
exclude_tables:
|
|
- a
|
|
---
|
|
kind: reverse
|
|
name: mydb
|
|
source:
|
|
database: sqlite3
|
|
conn_str: "../testdata/test.db"
|
|
targets:
|
|
- type: codes
|
|
language: golang
|
|
output_dir: ../models/include-exclude/both
|
|
include_tables:
|
|
- a
|
|
exclude_tables:
|
|
- b
|