missing semicolon

I just generated migrations using drizzle-kit for my react native expo app and when attemping to run the migrations, there is an error:

iOS Bundling failed 318ms node_modules/expo-router/entry.js (3071 modules)
ERROR SyntaxError: /Users/<snip>/WebstormProjects/<snip>/drizzle/0000_hard_shocker.sql: Missing semicolon. (1:6)

> 1 | CREATE TABLE `pictures` (
    |       ^
  2 |     `id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
  3 |     `task_id` integer NOT NULL,
  4 |     `image_data` blob NOT NULL,
image.png
Was this page helpful?