hasTable('accounts_data')) { $table = $schema->createTable('accounts_data'); $table->addColumn('id', Types::BIGINT, [ 'autoincrement' => true, 'notnull' => true, 'length' => 20, ]); $table->addColumn('uid', Types::STRING, [ 'notnull' => true, 'length' => 64, ]); $table->addColumn('name', Types::STRING, [ 'notnull' => true, 'length' => 64, ]); $table->addColumn('value', Types::STRING, [ 'notnull' => false, 'length' => 255, 'default' => '', ]); $table->setPrimaryKey(['id']); $table->addIndex(['uid'], 'accounts_data_uid'); $table->addIndex(['name'], 'accounts_data_name'); $table->addIndex(['value'], 'accounts_data_value'); return $schema; } return null; } }