diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 02733ee2e..3142c5760 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -71,6 +71,8 @@ Documentation is necessary for all non bugfix/refactoring changes. Only make changes to files that are in [`/packages/mermaid/src/docs`](packages/mermaid/src/docs) -**_DO NOT CHANGE FILES IN `/docs`_** +**_DO NOT CHANGE FILES IN `/docs` MANUALLY_** + +The `/docs` folder will be rebuilt and committed as part of a pre-commit hook. [Join our slack community if you want closer contact!](https://join.slack.com/t/mermaid-talk/shared_invite/enQtNzc4NDIyNzk4OTAyLWVhYjQxOTI2OTg4YmE1ZmJkY2Y4MTU3ODliYmIwOTY3NDJlYjA0YjIyZTdkMDMyZTUwOGI0NjEzYmEwODcwOTE) diff --git a/demos/er.html b/demos/er.html index 6b23d6b32..027c2e277 100644 --- a/demos/er.html +++ b/demos/er.html @@ -125,6 +125,21 @@
+ erDiagram + _customer_order { + bigint id PK + bigint customer_id FK + text shipping_address + text delivery_method + timestamp_with_time_zone ordered_at + numeric total_tax_amount + numeric total_price + text payment_method + } ++