http://forumdzjegkm6ey6ngexwpv5u3f3sav5wnrwqmatcb6c6mhxmkhsczid.onion/topic/details/database-hacking-sqlite-essentials-and-attack-strategies/42
For example, to create a users table: sqlite> CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT NOT NULL, age INTEGER); f0b171_c5c63a68be834f7cb8fa48f63be33f3e~mv2.png This SQL statement creates a “users” table with three columns: id: An integer that serves as the primary key, i.e. the identifier of this record in the database. name: A text field that must have a value (not null). age: An optional integer field that can be null.