``` db.createTable("Notes", true, ...
# android
r
Copy code
db.createTable("Notes", true,
                "id" to INTEGER + PRIMARY_KEY + UNIQUE + AUTOINCREMENT,
                "name" to TEXT,
                "note" to TEXT)