(c, tbl)
| 73 | if exclusions.against(config._current, "oracle"): |
| 74 | |
| 75 | def add_seq(c, tbl): |
| 76 | c._init_items( |
| 77 | schema.Sequence( |
| 78 | _truncate_name( |
| 79 | config.db.dialect, tbl.name + "_" + c.name + "_seq" |
| 80 | ), |
| 81 | optional=True, |
| 82 | ) |
| 83 | ) |
| 84 | |
| 85 | event.listen(col, "after_parent_attach", add_seq, propagate=True) |
| 86 | return construct |
nothing calls this directly
no test coverage detected