toAddColumnSql method

String toAddColumnSql(
  1. String tableName
)

Generate ALTER TABLE ADD COLUMN SQL.

Implementation

String toAddColumnSql(String tableName) {
  return 'ALTER TABLE $tableName ADD COLUMN ${toSql()}';
}