소스 검색

Fix: Empty initial db version string to, fixes unintentional migration message

default_compile_flags
vector-of-bool 3 년 전
부모
커밋
4f44c21c41
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/dds/db/database.cpp

+ 1
- 1
src/dds/db/database.cpp 파일 보기

@@ -61,7 +61,7 @@ void ensure_migrated(nsql::database& db) {
PRAGMA foreign_keys = 1;
DROP TABLE IF EXISTS dds_meta;
CREATE TABLE IF NOT EXISTS dds_meta_1 AS
WITH init (version) AS (VALUES ('eggs'))
WITH init (version) AS (VALUES (''))
SELECT * FROM init;
)");
nsql::transaction_guard tr{db};

Loading…
취소
저장