setup

php mitosis setup
✓ Setup complete: sessions and caches tables ready.

Creates exactly two tables — sessions (backing Session) and caches (backing the database driver of Cache) — the only two tables Clarity itself owns. Every other table in your app, including any you add with make:migration, is your own concern.

Safe to run more than once — both tables are created with IF NOT EXISTS. The first command a new app runs, right after cp .env_example .env; see Getting Started.

Next steps

  • Getting Started — where this fits in the 60-second install.
  • migrate — running your own app's migrations next.