This guide shows plugin developers how to add database tables to their elizaOS plugins. The plugin-sql system automatically handles schema creation, migrations, and namespacing.
// packages/my-plugin/src/schema/index.tsexport { pluginUsersTable } from './users';export { pluginSettingsTable } from './settings';// Export all other tables...