alterTable static method

dynamic alterTable(
  1. String rawSqfliteQuery
)

Implementation

static alterTable(String rawSqfliteQuery) async {
  await DatabaseConfig.database!.transaction((txn) async {
    await txn.execute(rawSqfliteQuery);
  });
}