Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SSQLTable

import { SSQLTable } from "https://raw.githubusercontent.com/cybertim/SmallSQLiteORM/main/mod.ts";

All your model classes should extend this class It includes the incremental 'id' by default

class User extends SSQLTable {
    username = "";
    age = 18;
    active = false;
}
class SSQLTable {
id;
}

§Properties