Full address history with DataTables ajax loading

This commit is contained in:
joeuhren
2020-11-19 21:37:42 -07:00
parent da7330ded6
commit fd277bc674
7 changed files with 276 additions and 176 deletions
+10
View File
@@ -0,0 +1,10 @@
var mongoose = require('mongoose')
, Schema = mongoose.Schema;
var AddressTXSchema = new Schema({
a_id: { type: String, index: true},
addresses: { type: String, lowercase: true},
type: { type: String }
}, {id: false});
module.exports = mongoose.model('AddressTx', AddressTXSchema);