File tree Expand file tree Collapse file tree 5 files changed +5
-0
lines changed
packages/server/src/db/schema Expand file tree Collapse file tree 5 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -202,6 +202,7 @@ export const apiUpdateMariaDB = createSchema
202202 . partial ( )
203203 . extend ( {
204204 mariadbId : z . string ( ) . min ( 1 ) ,
205+ dockerImage : z . string ( ) . optional ( ) ,
205206 } )
206207 . omit ( { serverId : true } ) ;
207208
Original file line number Diff line number Diff line change @@ -191,6 +191,7 @@ export const apiUpdateMongo = createSchema
191191 . partial ( )
192192 . extend ( {
193193 mongoId : z . string ( ) . min ( 1 ) ,
194+ dockerImage : z . string ( ) . optional ( ) ,
194195 } )
195196 . omit ( { serverId : true } ) ;
196197
Original file line number Diff line number Diff line change @@ -199,6 +199,7 @@ export const apiUpdateMySql = createSchema
199199 . partial ( )
200200 . extend ( {
201201 mysqlId : z . string ( ) . min ( 1 ) ,
202+ dockerImage : z . string ( ) . optional ( ) ,
202203 } )
203204 . omit ( { serverId : true } ) ;
204205
Original file line number Diff line number Diff line change @@ -192,6 +192,7 @@ export const apiUpdatePostgres = createSchema
192192 . partial ( )
193193 . extend ( {
194194 postgresId : z . string ( ) . min ( 1 ) ,
195+ dockerImage : z . string ( ) . optional ( ) ,
195196 } )
196197 . omit ( { serverId : true } ) ;
197198
Original file line number Diff line number Diff line change @@ -178,6 +178,7 @@ export const apiUpdateRedis = createSchema
178178 . partial ( )
179179 . extend ( {
180180 redisId : z . string ( ) . min ( 1 ) ,
181+ dockerImage : z . string ( ) . optional ( ) ,
181182 } )
182183 . omit ( { serverId : true } ) ;
183184
You can’t perform that action at this time.
0 commit comments