const String dbName = 'notes.db'; const int dbVersionNumber = 1; String tableNotes = 'Notes'; String columnId = '_id'; String columnTitle = 'title'; String columnContent = 'content';