diff --git a/src/models/Account.ts b/src/models/Account.ts index 16a5f51..f3d7fbe 100644 --- a/src/models/Account.ts +++ b/src/models/Account.ts @@ -16,7 +16,7 @@ export interface AccountInterface extends Document { engineer: boolean }, root: boolean - ssInit: boolean + hash: boolean } const Account: Schema = new Schema({ @@ -35,7 +35,7 @@ const Account: Schema = new Schema({ engineer: Boolean, }, root: Boolean, - ssInit: Boolean, + hash: Boolean, }); export default model('Account', Account);