Athena
Migrations

List schema migrations (Supabase-style)

Returns migration records from supabase_migrations.schema_migrations. If the table does not exist, returns an empty array with a message instead of an error.

GET
/schema/migrations

Header Parameters

X-Athena-Client*string

Response Body

application/json

curl -X GET "https://athena-cluster.com/schema/migrations" \  -H "X-Athena-Client: string"
{
  "migrations": [
    {
      "version": "string",
      "name": "string"
    }
  ],
  "message": "string"
}
Empty
Empty