I need to re-create my table in my database. Is there anyway to update table's columns or delete table with SQLite.swift ?
Assuming you have your variable for the open database:
let db = Database("path/to/db.sqlite3")
// what table to drop and recreate
db.drop(table: yourTable, ifExists: true)
And for altering a table
db.alter(table: yourTable, add: suffix)