Drop Table Kotlin

val db = this.writableDatabase
db.execSQL("DROP TABLE IF EXISTS " + TABLE_NAME)
db.close()
Zarden