Skip to content

Instantly share code, notes, and snippets.

View PhuTaliban's full-sized avatar

Phu T. Nguyen PhuTaliban

View GitHub Profile
@spruce-bruce
spruce-bruce / react-native-sqlite-migrations.js
Last active November 22, 2022 13:27
Sqlite migrations for react native for use with react-native-sqlite-storage and react-native-sqlite-2
/**
* this class decides what migrations to run and runs them
*/
class RNSqliteMigrator {
constructor(db) {
this._db = db;
this.initialize();
this._migrationsMap = {};