Initial project commit

This commit is contained in:
2020-07-18 21:44:27 -04:00
parent 8a1141b373
commit fea891a268
127 changed files with 20838 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
package com.eveningoutpost.dexdrip.Models;
import com.activeandroid.Model;
import com.activeandroid.util.SQLiteUtils;
/**
* Created by jamorham on 01/02/2017.
*/
public class PlusModel extends Model {
protected synchronized static boolean fixUpTable(String[] schema, boolean patched) {
if (patched) return true;
for (String patch : schema) {
try {
SQLiteUtils.execSql(patch);
} catch (Exception e) {
//
}
}
return true;
}
}