10-schema.sql 524 B

12345678910111213
  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 PRIMARY KEY,
  9. applied_at INTEGER NOT NULL, -- unix nanos
  10. syncthing_version TEXT NOT NULL COLLATE BINARY
  11. ) STRICT
  12. ;