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;