10-schema.sql 545 B

1234567891011121314
  1. -- Copyright (C) 2025 The Syncthing Authors.
  2. --
  3. -- This Source Code Form is subject to the terms of the Mozilla Public
  4. -- License, v. 2.0. If a copy of the MPL was not distributed with this file,
  5. -- You can obtain one at https://mozilla.org/MPL/2.0/.
  6. -- Schema migrations hold the list of historical migrations applied
  7. CREATE TABLE IF NOT EXISTS schemamigrations (
  8. schema_version INTEGER NOT NULL,
  9. applied_at INTEGER NOT NULL, -- unix nanos
  10. syncthing_version TEXT NOT NULL COLLATE BINARY,
  11. PRIMARY KEY(schema_version)
  12. ) STRICT
  13. ;