Hi! I’m trying to use Timescaledb with Drizzle, which doesn’t “natively” support it. So I’m trying to create manual migrations to add hypertables, and I’m using a script that will check annotations in the code for hypertables, and generate automatically some kind of
create_hypertable(table, field, if_not_exists=true)
statement in a custom migration
Is it possible to do something like that, and if I create the hypertable “twice” (using if_not_exists=true) will it work correctly (eg skip it the next time)?