database library Null safety

Classes

DBInstance

Constants

init_sql → const List<String>
Initial database schema, version 1
['create table article ( id integer unique, title text, content text, important integer default 0, date integer not null, read integer default 0, img text)', 'create table events ( uid tex…
migrations → const Map<int, List<String>>
{2 : ['create table categories (id integer primary key, slug text, name text)', 'create table articles_categories (article references article(id), category references categories(id), uniqu…