11 lines
187 B
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';
|
|
|