Skip to content

Instantly share code, notes, and snippets.

@nbnD
Created June 30, 2022 09:27
Show Gist options
  • Save nbnD/58bef80fd09d5fcb6a45d09475030003 to your computer and use it in GitHub Desktop.
Save nbnD/58bef80fd09d5fcb6a45d09475030003 to your computer and use it in GitHub Desktop.
CRUD
static Future<void> createTables(sql.Database database) async {
await database.execute("""CREATE TABLE items(
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
title TEXT,
description TEXT,
createdAt TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
)
""");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment