IDBVersionChangeEvent.oldVersion

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2021.

IDBVersionChangeEvent インターフェイスの読み取り専用プロパティ oldVersion は、データベースの古いバージョンを返します。

開かれたデータベースがまだ存在しないときは、oldVersion の値は 0 です。

メモ: この機能はウェブワーカー内で利用可能です。

64 ビットの整数です。

js
const dbName = "sampleDB";
const dbVersion = 2;
const request = indexedDB.open(dbName, dbVersion);

request.onupgradeneeded = (e) => {
  const db = request.result;
  if (e.oldVersion < 1) {
    db.createObjectStore("store1");
  }

  if (e.oldVersion < 2) {
    db.deleteObjectStore("store1");
    db.createObjectStore("store2");
  }

  // version < 3, 4... について同様に
};

仕様書

Specification
Indexed Database API 3.0
# dom-idbversionchangeevent-oldversion

ブラウザーの互換性

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
oldVersion

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support

関連情報