| 30 | |
| 31 | @attr.s |
| 32 | class Table: |
| 33 | id = attr.ib() |
| 34 | name = attr.ib() |
| 35 | unsplit_name = attr.ib() |
| 36 | orig_name = attr.ib() |
| 37 | columns = attr.ib(factory=list) |
| 38 | primary_keys = attr.ib(factory=list) |
| 39 | |
| 40 | |
| 41 | @attr.s |
no outgoing calls
no test coverage detected