I want to make a table with the fts5 sqlite extension like so: ```sql CREATE VIRTUAL TABLE mytable_fts using fts5(content="mytable", mycolumn); ``` this works in sqlite3 but not in a dbmate migration with the error `Error: no such module: fts5`.