For now you'd have to subclass sqlite.DATETIME and provide an alternate bind/result processor.
> --
> You received this message because you are subscribed to the Google Groups "sqlalchemy" group.
> To post to this group, send email to sqlal...@googlegroups.com.
> To unsubscribe from this group, send email to sqlalchemy+...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en.
>
usually server_default=func.now() accomplishes this - that will use localtime. For utc we don't have a backend-agnostic UTC function as of yet, you can create them pretty easily with @compiles.