Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't support array #122

Open
davidescapolan01 opened this issue Oct 25, 2024 · 0 comments
Open

Don't support array #122

davidescapolan01 opened this issue Oct 25, 2024 · 0 comments

Comments

@davidescapolan01
Copy link

Expected behaviour

when creating an er schema that contains an array i expect that the schema gets rendered with the the property correctly

erDiagram
    COMPANY {
        int id PK
        string name
    }
    
    ALARM_MODULE {
        int id PK
        string[] name
        int company FK
        int default_context FK
        int default_scope FK
        int default_asset_management_class FK
        int default_alarm_management_class FK
    }
    
    COMPANY ||--o{ ALARM_MODULE : "has"
    
erDiagram
    COMPANY {
        int id PK
        string name
    }
    
    ALARM_MODULE {
        int id PK
        string[] name
        int company FK
        int default_context FK
        int default_scope FK
        int default_asset_management_class FK
        int default_alarm_management_class FK
    }
    
    COMPANY ||--o{ ALARM_MODULE : "has"
    
Loading

Actual behaviour

The chema renders up untill the table before the one containing the array

Include:

  • Screenshot
  • Preview mode: Mermaid|Markdown
  • Theme used: light|dark

Schema without the array field
Schema with array field

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant