Built first draft of workspace serialization schemas, started writing DB tests

Co-Authored-By: kay@zed.dev
This commit is contained in:
Mikayla Maki 2022-10-19 17:10:49 -07:00
parent 60ebe33518
commit b48e28b555
5 changed files with 234 additions and 301 deletions

View file

@ -3,7 +3,7 @@ use rusqlite::OptionalExtension;
use super::Db;
pub(crate) const KVP_M_1_UP: &str = "
pub(crate) const KVP_M_1: &str = "
CREATE TABLE kv_store(
key TEXT PRIMARY KEY,
value TEXT NOT NULL