An empty database can be created simply by using (d/db-empty)
.
We can also pass the schema.
(d/db-empty schema)
or
(d/init-db datoms schema)
or
d.init_db(datoms, schema)
create initial DB with datoms and schemad.empty_db(schema)
create empty DB with schema only