hasTable('known_users')) { $table = $schema->createTable('known_users'); // Auto increment id $table->addColumn('id', Types::BIGINT, [ 'autoincrement' => true, 'notnull' => true, ]); $table->addColumn('known_to', Types::STRING, [ 'notnull' => true, 'length' => 255, ]); $table->addColumn('known_user', Types::STRING, [ 'notnull' => true, 'length' => 255, ]); $table->setPrimaryKey(['id']); $table->addIndex(['known_to'], 'ku_known_to'); return $schema; } return null; } }