We have a little piece of code that copies (parts of) a source database (in our case MSSQL) to a target database (in our case SQLite in memory) using SQLAlchemy. As part of this copying, we copy the table information from the source to the target:
for table in source:
table.tometadata(metadata_target)
# some more stuff (hack: could alter table here)
metadata_target.create_all()
When copying the table, the DEFAULT clauses get copied verbatim. E.g. a copied column in SQLite might look like this:
CREATE TABLE "TableName" (
-- ...
"TimeStamp" DATETIME DEFAULT (GETUTCDATE()) NOT NULL,
-- ...
)
This does not work because GETUTCDATE() is not a function in SQLite.
I am looking for a hook into the SQLAlchemy DDL compiler (I guess) where I can either modify or suppress the generation of the DEFAULT part depending on the value and the dialect(s) (e.g. replace GETUTCDATE() with DATE('now') or drop a default clause with NEWID() completely).
I have seen this part of the documentation (we use it to handle certain types during cross compilation), but I don't know how to employ it to handle the DEFAULT clause. I am not even sure whether it is the right tool. I can hack around this (by altering the table after "creation" by SQLAlchemy), but I'd prefer a more generic solution.