models:
Post:
title: string:400
content: longtext
published_at: datetime nullable
author_id: unsignedBigInteger foreign:users.id
User:
name: string:100
email: string:100 unique
password: string:100
controllers:
Post:
resource: web
User:
resource: api
seeders:
- Post
- User