Full address history with DataTables ajax loading
This commit is contained in:
@@ -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);
|
||||
Reference in New Issue
Block a user