addColumn method

  1. @override
void addColumn(
  1. String field
)
inherited

add the new column for table, the filed just like 'name Text'

Implementation

@override
void addColumn(String field) {
  execute('ALTER TABLE $table ADD COLUMN $field');
  debugPrint("The table $table add column excute");
}