23 lines
403 B
JavaScript
23 lines
403 B
JavaScript
import {
|
|
usqlite
|
|
} from '@/uni_modules/onemue-USQLite/js_sdk/usqlite.js'
|
|
|
|
const friendModel = usqlite.model('friends', {
|
|
userId: {
|
|
type: String,
|
|
primaryKey: true,
|
|
unique: true
|
|
},
|
|
name: String,
|
|
hash: {
|
|
type: String,
|
|
unique: true
|
|
},
|
|
portraitUrl: String,
|
|
localAvatar: String
|
|
})
|
|
|
|
export default {
|
|
friendModel
|
|
}
|