DeleteTable

@Repeatable(value = DeleteTable.Entries)
@Target(allowedTargets = [AnnotationTarget.CLASS])
@Retention(value = AnnotationRetention.BINARY)
annotation DeleteTable


Repeatable annotation declaring the deleted tables in the AutoMigration.to version of an auto migration.

See also
AutoMigration

Summary

Nested types

@Target(allowedTargets = [AnnotationTarget.CLASS])
@Retention(value = AnnotationRetention.BINARY)
annotation DeleteTable.Entries

Container annotation for the repeatable annotation DeleteTable.

Public constructors

DeleteTable(tableName: String)

Public properties

String

Name of the table in the AutoMigration.from version of the database to be deleted.

Public constructors

DeleteTable

DeleteTable(tableName: String)

Public properties

tableName

val tableNameString

Name of the table in the AutoMigration.from version of the database to be deleted.

Returns
String

Name of the table.