Sometimes your schema might be limited to just one platform, then you may declare the annotation to prevent building schema for the wrong platform:
/** * @platform mysql */ class TagSchema extends DeclareSchema { }
The above annotation @platform defines the platform that the schema belongs to. Valid values are mysql, sqlite, pgsql.
@platform
mysql
sqlite
pgsql
There was an error while loading. Please reload this page.