Add a column to a table
Future<void> addColumn(String table, String columnDef) async { await executor.runCustom('ALTER TABLE $table ADD COLUMN $columnDef'); }