resolve deadlock issue, draft migration features

This commit is contained in:
yggverse 2024-10-07 19:54:28 +03:00
parent 259ec321be
commit 366c5fad8e
12 changed files with 192 additions and 210 deletions

View file

@ -9,16 +9,18 @@ pub struct Database {
}
impl Database {
pub fn init(tx: &Transaction) -> Result<Database, Error> {
pub fn new() -> Self {
Self {}
}
pub fn init(tx: &Transaction) -> Result<usize, Error> {
tx.execute(
"CREATE TABLE IF NOT EXISTS `app`
(
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL
)",
[],
)?;
Ok(Self {})
)
}
pub fn add(&self, tx: &Transaction) -> Result<usize, Error> {