Design fast with AML
We have been frustrated by tools with hundreds of inputs, one for every little value. So we didn't want to inflict this to our users.
AML is the DSL to define your database schema you already know:
users
id uuid pk
email varchar unique
name varchar
posts
id uuid pk
title varchar
status varchar(draft, published, deleted)
content text
author uuid fk users.id
It's simple and minimal to define schemas as fast as you can type:
- Very flexible
- No extra or weird characters
- No input juggling
- Copy/Paste anything
Try it, there will be no turning back!
See AML page for more details.