Skip to content

Instantly share code, notes, and snippets.

@kunny
Created June 23, 2022 12:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunny/7f1e9f4234ce04a8c888c02ae361d4f9 to your computer and use it in GitHub Desktop.
Save kunny/7f1e9f4234ce04a8c888c02ae361d4f9 to your computer and use it in GitHub Desktop.
Class 101 / Flutter / 6-4
final sql = '''
CREATE TABLE ${Note.tableName} (
${Note.columnId} INTEGER PRIMARY KEY AUTOINCREMENT,
${Note.columnTitle} TEXT,
${Note.columnBody} TEXT NOT NULL,
${Note.columnColor} INTEGER NOT NULL
)
''';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment