0.0.4 • Published 8 months ago

flakes-lang v0.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

Flakes

Language and library to create data warehouse diagrams and schemas.

Example

This input

Fact purchase {
  int id -> customer.id;
  int item -> item.id;
  int price;
  int customer;
}

Dimension customer {
  int id;
  text name;
}

Dimension item {
  int id;
  text name;
}

will produce this output

erDiagram

purchase }|--|| item:"id"
purchase }|--|| customer:"id"
purchase {
        int id
        int item
        int price
        int customer
}

customer {
        int id
        text name
}

item {
        int id
        text name
}

later on the language should support the transpilation to SQL.

0.0.3

8 months ago

0.0.4

8 months ago

0.0.2

9 months ago

0.0.1

9 months ago