createTableHistoryTransaction static method
Implementation
static Future<void> createTableHistoryTransaction(
sql.Database database) async {
await database.execute("""CREATE TABLE IF NOT EXISTS history_transaction (
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
data TEXT
)""");
}