Create a basic table
Define a rowid-backed table with primary key and timestamps.
CREATE TABLE users (
id INTEGER PRIMARY KEY,
email TEXT NOT NULL UNIQUE,
display_name TEXT,
created_at TEXT NOT NULL DEFAULT CURRENT_TIMESTAMP
);`INTEGER PRIMARY KEY` aliases the rowid and is a common pattern for app tables.