Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
データベースにテーブルを再作成する必要があります。テーブルの列を更新したり、 SQLite.swift でテーブルを削除したりする方法はありますか?
ドキュメントへのリンク
開いているデータベースの変数があると仮定します。
let db = Database("path/to/db.sqlite3") // what table to drop and recreate db.drop(table: yourTable, ifExists: true)
そして、テーブルを変更するために
db.alter(table: yourTable, add: suffix)