wipeDatabase method

Future<void> wipeDatabase({
  1. required String cloudCapsuleId,
})

Wipes the database by deleting and recreating it. This will drop all tables and data in the database. The deployment will error until a redeploy is performed.

Implementation

_i2.Future<void> wipeDatabase({required String cloudCapsuleId}) =>
    caller.callServerEndpoint<void>('database', 'wipeDatabase', {
      'cloudCapsuleId': cloudCapsuleId,
    });