rename static method

Future<int> rename(
  1. String from,
  2. String to
)

Implementation

static Future<int> rename(String from, String to) =>
    DB.execute(renameSql(from, to));