Generate the SQL DDL for the task store table.
Constraint and index names are derived from the table name to avoid collisions when multiple stores share the same database.
Optional
import { getMcpTasksMigration } from '@adcp/sdk';await pool.query(getMcpTasksMigration()); // creates adcp_mcp_tasksawait pool.query(getMcpTasksMigration({ tableName: 'my_tasks' })); // custom name Copy
import { getMcpTasksMigration } from '@adcp/sdk';await pool.query(getMcpTasksMigration()); // creates adcp_mcp_tasksawait pool.query(getMcpTasksMigration({ tableName: 'my_tasks' })); // custom name
Generate the SQL DDL for the task store table.
Constraint and index names are derived from the table name to avoid collisions when multiple stores share the same database.