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