28 lines
484 B
JavaScript
28 lines
484 B
JavaScript
import {
|
|
usqlite
|
|
} from '@/uni_modules/onemue-USQLite/js_sdk/usqlite.js'
|
|
|
|
const contactModel = usqlite.model('contacts', {
|
|
targetId: {
|
|
type: String,
|
|
primaryKey: true,
|
|
unique: true
|
|
},
|
|
name: String,
|
|
remark: String,
|
|
hash: {
|
|
type: String,
|
|
unique: true
|
|
},
|
|
type: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
portraitUrl: String,
|
|
localAvatar: String
|
|
})
|
|
|
|
export {
|
|
contactModel
|
|
}
|