This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| DIR="./generated/schema.prisma" | |
| # Is the schema.prisma file exist? | |
| if [ -f "$DIR" ]; then | |
| echo "prisma client already exists" | |
| else | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | for FILE in ./*; do [ -f "$FILE" ] && mv "$FILE" "${FILE}.template"; done | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "$id": "Model Schema", | |
| "title": "Model Schema", | |
| "description": "Model schema", | |
| "properties": { | |
| "extends": { | |
| "pattern": "^[A-Z]{1}[a-zA-Z]{1,}$" | |
| }, | |
| "properties": { |