addColumnWithExpression method
Add new columns to an existing table.
Implementation
Future<void> addColumnWithExpression({required String table, required Map<String, String> newColumns, List<String>? namespace}) async {
await room.sendRequest("database.add_columns", {"table": table, "new_columns": newColumns, "namespace": namespace});
}