// SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
// SPDX-License-Identifier: AGPL-3.0-only
import type { Migration } from "./types";
export const v1: Migration = async (db) => {
const workspaces = db.createObjectStore("workspaces", {
keyPath: "id",
});
workspaces.createIndex("updatedAt", "updatedAt", {
unique: false,
});
};