23 lines
407 B
JavaScript
23 lines
407 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,
|
|
hash: {
|
|
type: String,
|
|
unique: true
|
|
},
|
|
portraitUrl: String,
|
|
localAvatar: String
|
|
})
|
|
|
|
export default {
|
|
contactModel
|
|
}
|