Simple_Notes_Flutter/lib/models/constants.dart

11 lines
187 B
Dart

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