dbml-language-server 0.1.2

A lightweight Language Server Protocol (LSP) implementation for DBML (Database Markup Language) files.
Documentation
Table users {
id int [pk]
name varchar
email varchar [unique]
created_at timestamp
}

enum status {
active
inactive
pending
}

Table posts {
id int [pk]
user_id int [ref: > users.id]
title varchar
status status
}

Ref: posts.user_id > users.id