renameColumn method

Future<void> renameColumn(
  1. String tableName,
  2. String oldName,
  3. String newName
)

Implementation

Future<void> renameColumn(
  String tableName,
  String oldName,
  String newName,
) async {
  final statements = _requireAdapter.renderRenameColumn(
    tableName,
    oldName,
    newName,
  );
  await _executeStatements(statements);
}