( instanceOrEngine: Instance | InstanceResource | Engine )
| 95 | }; |
| 96 | |
| 97 | export const instanceV1HasAlterSchema = ( |
| 98 | instanceOrEngine: Instance | InstanceResource | Engine |
| 99 | ): boolean => { |
| 100 | const engine = engineOfInstanceV1(instanceOrEngine); |
| 101 | if (engine === Engine.REDIS) return false; |
| 102 | return true; |
| 103 | }; |
| 104 | |
| 105 | export const instanceV1HasReadonlyMode = ( |
| 106 | _instanceOrEngine: Instance | InstanceResource | Engine |
no test coverage detected