INCISIONAdmin

Database Migrations

Manage schema versions across all tenant databases

Total Tenants
1
Initialized
1
Not Initialized
0
Has Errors
0
Available Migrations
Schema migrations that can be applied to tenant databases
v1

001_initial_schema

Initial tenant database schema with all core tables

Initial Migration

Additional migrations will appear here when you add new .sql files to migrations/tenant/

Tenant Database Status
Overview of schema versions for all active tenants
TenantSlugSchema StatusInitializedActions
GAMMAgammav112/22/2025Manage
How to Add New Migrations
  1. Create a new SQL file in migrations/tenant/ following the naming convention: XXX_description.sql
  2. The migration number (XXX) should be sequential (e.g., 002, 003, etc.)
  3. Each migration should be idempotent - safe to run multiple times
  4. Update the schema version at the end of your migration by inserting into schema_migrations
  5. For now, migrations need to be run manually in each tenant's Supabase SQL Editor

Future Enhancement

Automatic migration running across all tenants will be available in a future update. For now, use the "Manage" button to access each tenant's database management page.