File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ module.exports = function (app) {
13
13
logo : { type : String } ,
14
14
coverImg : { type : String } ,
15
15
userId : { type : String , required : true } ,
16
- description : { type : String , required : true } ,
16
+ description : { type : String } ,
17
17
publicEmail : { type : String } ,
18
18
website : { type : String } ,
19
19
// will be generated automatically
@@ -23,7 +23,7 @@ module.exports = function (app) {
23
23
updatedAt : { type : Date , default : Date . now } ,
24
24
isEnabled : {
25
25
type : Boolean ,
26
- default : true
26
+ default : false
27
27
} ,
28
28
wasSeeded : { type : Boolean }
29
29
} ) ;
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ module.exports = (seederstore) => {
17
17
description : '{{lorem.text}}' ,
18
18
isVerified : ( ) => seedHelpers . randomItem ( [ true , false ] ) ,
19
19
deletedAt : null ,
20
+ isEnabled : true ,
20
21
createdAt : '{{date.recent}}' ,
21
22
updatedAt : '{{date.recent}}' ,
22
23
wasSeeded : true
You can’t perform that action at this time.
0 commit comments